From 9b3849e2002ab2c251075f70cca8c0a4a8c8d7b2 Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Fri, 15 Mar 2024 09:47:07 +0100 Subject: [PATCH] Bump GitHub Actions dependencies (#94) Upgrade `actions/checkout` and `actions/setup-node` from v3 to v4 primarily to benefit from their upgrades from Node.js v16 (deprecated) to Node.js v20 --- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 165117e..a4b14ca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,11 +14,11 @@ jobs: pull-requests: write # to comment on Pull Requests included in a release steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Node.js setup - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: cache: npm node-version: 20 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9aeabea..f2cb10e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,9 +9,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Node.js setup - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: cache: npm node-version: 20 @@ -46,9 +46,9 @@ jobs: node-version: 20 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Node.js setup - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: cache: npm node-version: ${{ matrix.node-version }}