Skip to content

Commit 94409cc

Browse files
build(deps): bump actions/cache in the github-actions group
Bumps the github-actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 5.0.2 to 5.0.3 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@8b402f5...cdf6c1f) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 435a63c commit 94409cc

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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
58+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
5959
with:
6060
path: ~/.npm
6161
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: npm ci
5050

5151
- name: Cache build artifacts
52-
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
52+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
5353
with:
5454
path: dist
5555
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('src/**/*') }}

.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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
41+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
96+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
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: 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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
54+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
5555
with:
5656
path: /var/cache/apt/archives
5757
key: ${{ runner.os }}-apt-${{ hashFiles('.github/workflows/release.yml') }}
@@ -72,15 +72,15 @@ jobs:
7272
cache: "npm"
7373

7474
- name: Cache dependencies
75-
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
75+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
7676
with:
7777
path: ~/.npm
7878
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
7979
restore-keys: |
8080
${{ runner.os }}-node-
8181
8282
- name: Cache Cypress binary
83-
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
83+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
8484
with:
8585
path: ~/.cache/Cypress
8686
key: cypress-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
@@ -152,7 +152,7 @@ jobs:
152152
cache: "npm"
153153

154154
- name: Cache dependencies
155-
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
155+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
156156
with:
157157
path: ~/.npm
158158
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -163,7 +163,7 @@ jobs:
163163
run: npm ci
164164

165165
- name: Cache build artifacts
166-
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
166+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
167167
with:
168168
path: dist
169169
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('src/**/*') }}

.github/workflows/test-and-report.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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
31+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
46+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
57+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
89+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
100+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
170+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
215+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
216216
with:
217217
path: ~/.cache/Cypress
218218
key: cypress-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}

0 commit comments

Comments
 (0)