Skip to content

Commit 8ecf393

Browse files
authored
Merge pull request #1692 from Hack23/dependabot/github_actions/actions/cache-5.0.4
chore(deps): bump actions/cache from 5.0.3 to 5.0.4
2 parents b84a9e4 + a957c06 commit 8ecf393

6 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/workflows/audit-assets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
cache: 'npm'
4444

4545
- name: Cache dependencies
46-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
46+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
4747
with:
4848
path: ~/.npm
4949
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
cache: "npm"
5656

5757
- name: Cache dependencies
58-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
58+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
5959
with:
6060
path: ~/.npm
6161
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/deploy-s3.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,15 @@ jobs:
7979
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8080

8181
- name: Cache apt packages
82-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
82+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
8383
with:
8484
path: /var/cache/apt/archives
8585
key: ${{ runner.os }}-apt-${{ hashFiles('**/.github/workflows/main.yml') }}
8686
restore-keys: |
8787
${{ runner.os }}-apt-
8888
8989
- name: Cache npm dependencies
90-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
90+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
9191
with:
9292
path: ~/.npm
9393
key: ${{ runner.os }}-npm-minify-${{ hashFiles('**/package-lock.json') }}

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
echo "Version: ${VERSION}"
5252
5353
- name: Cache APT packages
54-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
54+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
5555
with:
5656
path: /var/cache/apt/archives
5757
key: ${{ runner.os }}-apt-${{ hashFiles('.github/workflows/release.yml') }}
@@ -104,15 +104,15 @@ jobs:
104104
cache: "npm"
105105

106106
- name: Cache dependencies
107-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
107+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
108108
with:
109109
path: ~/.npm
110110
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
111111
restore-keys: |
112112
${{ runner.os }}-node-
113113
114114
- name: Cache Cypress binary
115-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
115+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
116116
with:
117117
path: ~/.cache/Cypress
118118
key: cypress-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
@@ -221,15 +221,15 @@ jobs:
221221
cache: "npm"
222222

223223
- name: Cache dependencies
224-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
224+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
225225
with:
226226
path: ~/.npm
227227
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
228228
restore-keys: |
229229
${{ runner.os }}-node-
230230
231231
- name: Cache Vite build cache
232-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
232+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
233233
with:
234234
path: node_modules/.vite
235235
key: ${{ runner.os }}-vite-${{ hashFiles('**/package-lock.json') }}

.github/workflows/screenshot-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ jobs:
3434
cache: "npm"
3535

3636
- name: Cache dependencies
37-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
37+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
3838
with:
3939
path: ~/.npm
4040
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
4141
restore-keys: |
4242
${{ runner.os }}-node-
4343
4444
- name: Cache APT packages
45-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
45+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
4646
with:
4747
path: /var/cache/apt/archives
4848
key: ${{ runner.os }}-apt-${{ hashFiles('.github/workflows/screenshot-analysis.yml') }}
@@ -81,7 +81,7 @@ jobs:
8181
run: npx playwright install chromium --with-deps
8282

8383
- name: Cache Playwright browsers
84-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
84+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
8585
with:
8686
path: ~/.cache/ms-playwright
8787
key: playwright-${{ runner.os }}-${{ hashFiles('package-lock.json') }}

.github/workflows/test-and-report.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cache: "npm"
2929

3030
- name: Cache dependencies
31-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
31+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
3232
with:
3333
path: ~/.npm
3434
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -69,15 +69,15 @@ jobs:
6969
cache: "npm"
7070

7171
- name: Cache dependencies
72-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
72+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
7373
with:
7474
path: ~/.npm
7575
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
7676
restore-keys: |
7777
${{ runner.os }}-node-
7878
7979
- name: Cache Vite build cache
80-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
80+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
8181
with:
8282
path: node_modules/.vite
8383
key: ${{ runner.os }}-vite-${{ hashFiles('**/package-lock.json') }}
@@ -118,7 +118,7 @@ jobs:
118118
cache: "npm"
119119

120120
- name: Cache dependencies
121-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
121+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
122122
with:
123123
path: ~/.npm
124124
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -162,15 +162,15 @@ jobs:
162162
cache: "npm"
163163

164164
- name: Cache dependencies
165-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
165+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
166166
with:
167167
path: ~/.npm
168168
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
169169
restore-keys: |
170170
${{ runner.os }}-node-
171171
172172
- name: Cache APT packages
173-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
173+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
174174
with:
175175
path: /var/cache/apt/archives
176176
key: ${{ runner.os }}-apt-${{ hashFiles('.github/workflows/test-and-report.yml') }}
@@ -210,7 +210,7 @@ jobs:
210210
google-chrome --version
211211
212212
- name: Cache Cypress binary
213-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
213+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
214214
with:
215215
path: ~/.cache/Cypress
216216
key: cypress-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
@@ -317,15 +317,15 @@ jobs:
317317
cache: "npm"
318318

319319
- name: Cache dependencies
320-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
320+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
321321
with:
322322
path: ~/.npm
323323
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
324324
restore-keys: |
325325
${{ runner.os }}-node-
326326
327327
- name: Cache APT packages
328-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
328+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
329329
with:
330330
path: /var/cache/apt/archives
331331
key: ${{ runner.os }}-apt-graphviz-${{ hashFiles('.github/workflows/test-and-report.yml') }}

0 commit comments

Comments
 (0)