Skip to content

Commit 4bdb17e

Browse files
committed
CI: bump actions/checkout from 4 to 5 for rust-analysis job
GitHub Actions started complaining about use of Node.js 20 and I was wondering why only one job uses actions/checkout@v4, while everybody else already uses actions/checkout@v5. It turns out that it is caused by a semantic mismerge between e75cd05 (ci: check formatting of our Rust code, 2025-10-15) that added a new use of actions/checkout@v4 that happened very close to another change 63541ed (build(deps): bump actions/checkout from 4 to 5, 2025-10-16) that updated all uses of actions/checkout@v4 to use vactions/checkout@v5. Update the leftover and the last use of actions/checkout@v4 to use actions/checkout@v5 to help ourselves to move away from Node.js 20. Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 67ad421 commit 4bdb17e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ jobs:
480480
group: rust-analysis-${{ github.ref }}
481481
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
482482
steps:
483-
- uses: actions/checkout@v4
483+
- uses: actions/checkout@v5
484484
- run: ci/install-dependencies.sh
485485
- run: ci/run-rust-checks.sh
486486
sparse:

0 commit comments

Comments
 (0)