From 3543ca03d601b22f2097e80708110119aee20d65 Mon Sep 17 00:00:00 2001 From: armfazh Date: Fri, 8 Mar 2024 16:05:23 -0800 Subject: [PATCH] Bump up checkout and setup-node version. --- .github/workflows/release.yml | 6 +++--- .github/workflows/tests.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b63710e..7d8a04b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,12 +12,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checking out - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Use Node.js 20 - uses: actions/setup-node@v3 + - name: Use Node.js v20 + uses: actions/setup-node@v4 with: node-version: 20 # registry-url is required to correctly setup authentication per https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages#publishing-packages-to-the-npm-registry diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 37fc122..6c161a5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,10 +18,10 @@ jobs: crypto_arg_required: [ true, false ] steps: - name: Checking out - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use Node.js v${{ matrix.node }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} cache: 'npm'