From 6fabc2ec22f31e39bcde5dd14d23483665f6b66c Mon Sep 17 00:00:00 2001 From: Marco Montalbano Date: Wed, 24 May 2023 00:10:34 +0200 Subject: [PATCH] Update workflow dependencies --- .github/workflows/publish.yml | 6 +++--- .github/workflows/release.yml | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 189d934f..3106574e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,12 +10,12 @@ jobs: steps: - name: Checkout 🛎️ - uses: actions/checkout@v1 + uses: actions/checkout@v3 - name: Node 🧰 - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: 14.x + node-version: 18.x - name: Install 📦 run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 725a2fc7..0fa40064 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout 🛎️ - uses: actions/checkout@v1.0.0 + uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Get tag info 🏷 id: tags