Skip to content

Commit fce4f53

Browse files
authored
Merge pull request #517 from Hack23/dependabot/github_actions/github-actions-003dc165f5
build(deps): bump actions/cache from 5.0.3 to 5.0.4 in the github-actions group
2 parents ec37a18 + 0c84cfd commit fce4f53

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.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/copilot-setup.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
cache: 'npm'
3939

4040
- name: Cache dependencies
41-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
41+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
4242
with:
4343
path: ~/.npm
4444
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -93,7 +93,7 @@ jobs:
9393
echo "- Command: @modelcontextprotocol/server-playwright"
9494
9595
- name: Cache apt packages
96-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
96+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
9797
with:
9898
path: /var/cache/apt/archives
9999
key: ${{ runner.os }}-apt-${{ hashFiles('.github/workflows/copilot-setup.yml') }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
cache: "npm"
6565

6666
- name: Cache Cypress binary
67-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
67+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
6868
with:
6969
path: ~/.cache/Cypress
7070
key: cypress-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
@@ -139,7 +139,7 @@ jobs:
139139
run: npm ci
140140

141141
- name: Cache build artifacts
142-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
142+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
143143
with:
144144
path: dist
145145
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('src/**/*') }}

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

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

3030
- name: Cache apt packages
31-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
31+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
3232
with:
3333
path: /var/cache/apt/archives
3434
key: ${{ runner.os }}-apt-${{ hashFiles('.github/workflows/test-and-report.yml') }}
@@ -43,7 +43,7 @@ jobs:
4343
sudo dbus-daemon --system --fork
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') }}
@@ -54,7 +54,7 @@ jobs:
5454
run: npm install
5555

5656
- name: Cache Cypress binary
57-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
57+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
5858
with:
5959
path: ~/.cache/Cypress
6060
key: cypress-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
@@ -86,7 +86,7 @@ jobs:
8686
cache: "npm"
8787

8888
- name: Cache dependencies
89-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
89+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
9090
with:
9191
path: ~/.npm
9292
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -97,7 +97,7 @@ jobs:
9797
run: npm ci
9898

9999
- name: Cache build artifacts
100-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
100+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
101101
with:
102102
path: dist
103103
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('src/**/*') }}
@@ -167,7 +167,7 @@ jobs:
167167
cache: "npm"
168168

169169
- name: Cache dependencies
170-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
170+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
171171
with:
172172
path: ~/.npm
173173
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -212,7 +212,7 @@ jobs:
212212
cache: "npm"
213213

214214
- name: Cache Cypress binary
215-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
215+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
216216
with:
217217
path: ~/.cache/Cypress
218218
key: cypress-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}

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

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

3030
- name: Cache apt packages
31-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
31+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
3232
with:
3333
path: /var/cache/apt/archives
3434
key: ${{ runner.os }}-apt-${{ hashFiles('.github/workflows/test-and-report.yml') }}
@@ -46,7 +46,7 @@ jobs:
4646
run: npm install
4747

4848
- name: Cache Cypress binary
49-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
49+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
5050
with:
5151
path: ~/.cache/Cypress
5252
key: cypress-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
@@ -81,7 +81,7 @@ jobs:
8181
run: npm ci
8282

8383
- name: Cache build artifacts
84-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
84+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
8585
with:
8686
path: dist
8787
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('src/**/*') }}
@@ -188,7 +188,7 @@ jobs:
188188
cache: "npm"
189189

190190
- name: Cache Cypress binary
191-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
191+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
192192
with:
193193
path: ~/.cache/Cypress
194194
key: cypress-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}

0 commit comments

Comments
 (0)