Skip to content

Commit 0da2d44

Browse files
Bump actions/cache from 4 to 5 (#293)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5b7af23 commit 0da2d44

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Checkout code
3939
uses: actions/checkout@v6
4040
- name: Cached Go dependencies
41-
uses: actions/cache@v4
41+
uses: actions/cache@v5
4242
with:
4343
path: ~/go/pkg/mod
4444
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -65,7 +65,7 @@ jobs:
6565
go-version: ${{ env.GO_VERSION }}
6666
- name: Checkout code
6767
uses: actions/checkout@v6
68-
- uses: actions/cache@v4
68+
- uses: actions/cache@v5
6969
with:
7070
path: ~/go/pkg/mod
7171
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -86,7 +86,7 @@ jobs:
8686
go-version: ${{ env.GO_VERSION }}
8787
- name: Checkout code
8888
uses: actions/checkout@v6
89-
- uses: actions/cache@v4
89+
- uses: actions/cache@v5
9090
with:
9191
path: ~/go/pkg/mod
9292
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
go-version: ${{ env.GO_VERSION }}
2828
- name: Checkout code
2929
uses: actions/checkout@v6
30-
- uses: actions/cache@v4
30+
- uses: actions/cache@v5
3131
with:
3232
path: ~/go/pkg/mod
3333
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -54,7 +54,7 @@ jobs:
5454
- name: Set output
5555
id: vars
5656
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
57-
- uses: actions/cache@v4
57+
- uses: actions/cache@v5
5858
with:
5959
path: ~/go/pkg/mod
6060
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)