Skip to content

Commit 3a7fab7

Browse files
mydeaclaude
andcommitted
ci: Bump actions/cache to v5 and actions/download-artifact to v5
Upgrade `actions/cache/restore`, `actions/cache/save`, and `actions/download-artifact` from v4 to v5 in composite actions. Both v5 releases are non-breaking for our usage: - actions/cache v5: only upgrades Node.js runtime from 20 to 24, no input/output changes. - actions/download-artifact v5: the only breaking change is about downloads by artifact ID (nested directory behavior), which does not affect us since we download by name. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 4f0c089 commit 3a7fab7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/install-playwright/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ runs:
1818
working-directory: ${{ inputs.cwd }}
1919

2020
- name: Restore cached playwright binaries
21-
uses: actions/cache/restore@v4
21+
uses: actions/cache/restore@v5
2222
id: playwright-cache
2323
with:
2424
path: |
@@ -43,7 +43,7 @@ runs:
4343

4444
# Only store cache on develop branch
4545
- name: Store cached playwright binaries
46-
uses: actions/cache/save@v4
46+
uses: actions/cache/save@v5
4747
if: github.event_name == 'push' && github.ref == 'refs/heads/develop'
4848
with:
4949
path: |

.github/actions/restore-cache/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ runs:
1111
steps:
1212
- name: Check dependency cache
1313
id: dep-cache
14-
uses: actions/cache/restore@v4
14+
uses: actions/cache/restore@v5
1515
with:
1616
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
1717
key: ${{ inputs.dependency_cache_key }}
1818

1919
- name: Restore build artifacts
20-
uses: actions/download-artifact@v4
20+
uses: actions/download-artifact@v5
2121
with:
2222
name: build-output
2323

0 commit comments

Comments
 (0)