Skip to content

Commit 4e46598

Browse files
committed
ci: actions/checkout and actions/setup-node v4 -> v7
Every run now warns that both actions target Node.js 20, which GitHub is retiring on its runners. v5 of each moved to Node 24; v7 is current. No workflow here uses pull_request_target or workflow_run (the checkout v7 change), and no package.json carries packageManager (the setup-node v5 auto-cache change), so nothing else moves.
1 parent 74d323f commit 4e46598

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
timeout-minutes: 20
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v7
4545

4646
# Fail here rather than after a four-minute build, and fail with the
4747
# command that fixes it. A workflow whose first bad day costs you a build
@@ -64,7 +64,7 @@ jobs:
6464
exit 1
6565
fi
6666
67-
- uses: actions/setup-node@v4
67+
- uses: actions/setup-node@v7
6868
with:
6969
node-version: 22
7070
cache: npm

0 commit comments

Comments
 (0)