Skip to content

Commit 634ac9b

Browse files
committed
CI: align branch-introduced actions with master's Node.js 24 bump
Rebasing onto master (which migrated JS actions to Node.js 24 runtimes) left a few action refs that this branch added in new steps still on the old major versions. Bring them in line with master: - ccache-setup read-only restore: actions/cache/restore@v4 -> @v5 - smoke-test / os-check ccache save: actions/cache/save@v4 -> @v5 - ci-deps-image checkout: actions/checkout@v4 -> @v5
1 parent b8c008f commit 634ac9b

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/ccache-setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ runs:
6969
# read-only=true: restore the shared cache but never upload (PR runs).
7070
- name: Restore ccache (read-only)
7171
if: inputs.read-only == 'true'
72-
uses: actions/cache/restore@v4
72+
uses: actions/cache/restore@v5
7373
with:
7474
path: ~/.ccache
7575
# Same key shape as the save branch, for symmetry. This branch never

.github/workflows/ci-deps-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ${{ matrix.runner }}
6363
timeout-minutes: 20
6464
steps:
65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@v5
6666

6767
- name: Resolve and download the .deb closure
6868
shell: bash

.github/workflows/os-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ jobs:
407407
# restore above; PR/push runs never save, so PRs add nothing.
408408
- name: Save ccache (seed only)
409409
if: github.event_name == 'schedule'
410-
uses: actions/cache/save@v4
410+
uses: actions/cache/save@v5
411411
with:
412412
path: ~/.cache/ccache
413413
key: os-check-linux-ccache-${{ matrix.shard }}-${{ github.ref_name }}-${{ github.sha }}

.github/workflows/smoke-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
# ccache that PR runs restore; PRs never save.
168168
- name: Save ccache
169169
if: github.event_name != 'pull_request' && steps.merge_check.outputs.skip != 'true'
170-
uses: actions/cache/save@v4
170+
uses: actions/cache/save@v5
171171
with:
172172
path: ~/.cache/ccache
173173
key: smoke-ccache-${{ github.ref_name }}-${{ github.sha }}

0 commit comments

Comments
 (0)