Skip to content

Commit 2e19b69

Browse files
chore(deps): bump actions/cache from 5.0.5 to 6.1.0
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.5 to 6.1.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@27d5ce7...55cc834) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 7aff127 commit 2e19b69

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/asicrs-plugin-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
repo-token: ${{ secrets.GITHUB_TOKEN }}
4141

4242
- name: Cache Cargo registry & build
43-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
43+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
4444
with:
4545
path: |
4646
~/.cargo/registry
@@ -78,7 +78,7 @@ jobs:
7878
repo-token: ${{ secrets.GITHUB_TOKEN }}
7979

8080
- name: Cache Cargo registry & build
81-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
81+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
8282
with:
8383
path: |
8484
~/.cargo/registry

.github/workflows/protofleet-client-checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: ./.github/actions/hermit-setup
3030

3131
- name: Cache npm dependencies
32-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
32+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
3333
with:
3434
path: ~/.npm
3535
key: ${{ runner.os }}-npm-${{ hashFiles('client/package-lock.json') }}
@@ -62,7 +62,7 @@ jobs:
6262
uses: ./.github/actions/hermit-setup
6363

6464
- name: Cache npm dependencies
65-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
65+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
6666
with:
6767
path: ~/.npm
6868
key: ${{ runner.os }}-npm-${{ hashFiles('client/package-lock.json') }}
@@ -90,7 +90,7 @@ jobs:
9090
uses: ./.github/actions/hermit-setup
9191

9292
- name: Cache npm dependencies
93-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
93+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
9494
with:
9595
path: ~/.npm
9696
key: ${{ runner.os }}-npm-${{ hashFiles('client/package-lock.json') }}

.github/workflows/protofleet-e2e-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
# Rolldown's Linux binding), so we always run a clean `npm ci` and just
5353
# keep its downloads warm. This is also the pattern Client Checks uses.
5454
- name: Cache npm dependencies
55-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
55+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
5656
with:
5757
path: ~/.npm
5858
key: ${{ runner.os }}-npm-${{ hashFiles('client/package-lock.json') }}
@@ -186,7 +186,7 @@ jobs:
186186
# See the build job: cache ~/.npm and run a clean `npm ci` rather than
187187
# caching a built node_modules.
188188
- name: Cache npm dependencies
189-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
189+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
190190
with:
191191
path: ~/.npm
192192
key: ${{ runner.os }}-npm-${{ hashFiles('client/package-lock.json') }}
@@ -195,7 +195,7 @@ jobs:
195195
196196
- name: Cache Playwright browsers
197197
id: playwright-cache
198-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
198+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
199199
with:
200200
path: ~/.cache/ms-playwright
201201
key: ${{ runner.os }}-playwright-${{ hashFiles('client/package-lock.json') }}
@@ -359,7 +359,7 @@ jobs:
359359

360360
# See the build job: cache ~/.npm and run a clean `npm ci`.
361361
- name: Cache npm dependencies
362-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
362+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
363363
with:
364364
path: ~/.npm
365365
key: ${{ runner.os }}-npm-${{ hashFiles('client/package-lock.json') }}

.github/workflows/protoos-e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
fake-proto-rig
4141
4242
- name: Cache Node modules
43-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
43+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
4444
with:
4545
path: |
4646
client/node_modules

.github/workflows/rust-sdk-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
repo-token: ${{ secrets.GITHUB_TOKEN }}
4040

4141
- name: Cache Cargo registry & build
42-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
42+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
4343
with:
4444
path: |
4545
~/.cargo/registry
@@ -80,7 +80,7 @@ jobs:
8080
repo-token: ${{ secrets.GITHUB_TOKEN }}
8181

8282
- name: Cache Cargo registry & build
83-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
83+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
8484
with:
8585
path: |
8686
~/.cargo/registry

0 commit comments

Comments
 (0)