Skip to content

Commit

Permalink
Bump GitHub Actions dependencies (#94)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ericcornelissen authored Mar 15, 2024
1 parent 0445664 commit 9b3849e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit 9b3849e

Please sign in to comment.