Skip to content

Commit 8374a1a

Browse files
chore(deps): bump actions/cache from 4 to 5 (#526)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b1000c1 commit 8374a1a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
go-version: "^1.24.0"
2929
- uses: actions/checkout@v6
3030
- name: Go Build Cache
31-
uses: actions/cache@v4
31+
uses: actions/cache@v5
3232
with:
3333
path: ${{ steps.go-cache-paths.outputs.go-build }}
3434
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
3535
- name: Go Mod Cache
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: ${{ steps.go-cache-paths.outputs.go-mod }}
3939
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v6
16-
- uses: actions/cache@v4
16+
- uses: actions/cache@v5
1717
env:
1818
cache-name: npm-cache
1919
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@v6
26-
- uses: actions/cache@v4
26+
- uses: actions/cache@v5
2727
env:
2828
cache-name: npm-cache
2929
with:

0 commit comments

Comments
 (0)