Skip to content

Commit 1033e55

Browse files
github-actions(deps): bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0b86948 commit 1033e55

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ jobs:
3434
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
3535
3636
- name: Setup pnpm cache
37-
uses: actions/cache@v4
37+
uses: actions/cache@v5
3838
with:
3939
path: ${{ steps.get-store-path.outputs.STORE_PATH }}
4040
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
4141
restore-keys: |
4242
${{ runner.os }}-pnpm-store-
4343
4444
# - name: Cache turbo
45-
# uses: actions/cache@v4
45+
# uses: actions/cache@v5
4646
# with:
4747
# path: .turbo
4848
# key: ${{ runner.os }}-turbo-${{ github.sha }}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
4848
4949
- name: Setup pnpm cache
50-
uses: actions/cache@v4
50+
uses: actions/cache@v5
5151
with:
5252
path: ${{ steps.get-store-path.outputs.STORE_PATH }}
5353
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -56,7 +56,7 @@ jobs:
5656
5757
# to cache p:build, format, lint, type-check and test-run
5858
- name: Setup turbo cache
59-
uses: actions/cache@v4
59+
uses: actions/cache@v5
6060
with:
6161
path: .turbo
6262
key: ${{ runner.os }}-turbo-${{ github.sha }}

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
5454
- name: Setup pnpm cache
5555
# since this always runs after CI, there's no need to save the cache afterwards, since it's guaranteed to be the same
56-
uses: actions/cache/restore@v4
56+
uses: actions/cache/restore@v5
5757
with:
5858
path: ${{ steps.get-store-path.outputs.STORE_PATH }}
5959
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -62,7 +62,7 @@ jobs:
6262
6363
# mostly to skip preconstruct build
6464
- name: Setup turbo cache
65-
uses: actions/cache/restore@v4
65+
uses: actions/cache/restore@v5
6666
with:
6767
path: .turbo
6868
key: ${{ runner.os }}-turbo-${{ github.sha }}

0 commit comments

Comments
 (0)