Skip to content

Commit 96c1c8a

Browse files
Update actions/cache action
1 parent 8cd3274 commit 96c1c8a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
steps:
1111
- name: Check dependency cache
1212
id: dep-cache
13-
uses: actions/cache/restore@v4
13+
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
1414
with:
1515
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
1616
key: ${{ env.DEPENDENCY_CACHE_KEY }}
@@ -26,7 +26,7 @@ runs:
2626
- name: Check dependency cache (retry)
2727
id: dep-cache-retry-attempt
2828
if: steps.dep-cache.outputs.cache-hit != 'true'
29-
uses: actions/cache/restore@v4
29+
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
3030
with:
3131
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
3232
key: ${{ env.DEPENDENCY_CACHE_KEY }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runs:
1515
shell: bash
1616
run: echo "version=$(node -p "require('@playwright/test/package.json').version")" >> $GITHUB_OUTPUT
1717

18-
- uses: actions/cache@v4
18+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
1919
name: Check if Playwright browser is cached
2020
id: playwright-cache
2121
with:

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
echo "$EOF" >> "$GITHUB_ENV"
166166
167167
- name: Nx cache
168-
uses: actions/cache@v4
168+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
169169
id: cache_nx
170170
with:
171171
path: .nxcache
@@ -176,7 +176,7 @@ jobs:
176176
nx-Linux
177177
178178
- name: Check dependency cache
179-
uses: actions/cache@v4
179+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
180180
id: cache_dependencies
181181
with:
182182
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
@@ -264,7 +264,7 @@ jobs:
264264
env:
265265
DEPENDENCY_CACHE_KEY: ${{ needs.job_setup.outputs.dependency_cache_key }}
266266

267-
- uses: actions/cache@v4
267+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
268268
with:
269269
path: ghost/**/.eslintcache
270270
key: eslint-cache

.github/workflows/linear-triage.lock.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)