Skip to content

Commit 145db25

Browse files
ralyodioclaude
andcommitted
Bump actions/checkout to v5
The first green run carried one annotation: checkout@v4 targets Node 20, which is deprecated, so the runner was already forcing it onto Node 24. v5 targets Node 24 natively. No behaviour change -- the fetch-depth: 0 on the release job means the same thing -- it just stops the run from arriving with a warning attached, which on a workflow whose whole history is "a red X that meant nothing" is worth keeping clean. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EP9qibz6eUB3wB8sGHCVS5
1 parent 71130d4 commit 145db25

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
check:
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535

3636
# scripts-check skips shellcheck with a note when it is absent, so
3737
# without this step the lint third of the gate would quietly not run.
@@ -46,7 +46,7 @@ jobs:
4646
if: startsWith(github.ref, 'refs/tags/v')
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v5
5050
with: { fetch-depth: 0 }
5151

5252
- name: Create the release

0 commit comments

Comments
 (0)