Skip to content

Commit b0e4e69

Browse files
authored
Merge pull request #261 from philips-software/dependabot/github_actions/actions/cache-5
Bump actions/cache from 4 to 5
2 parents 85508e5 + 1245f6f commit b0e4e69

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ jobs:
5353
run: echo "::set-output name=cache::$(make go.cachedir)"
5454

5555
- name: Cache the Go Build Cache
56-
uses: actions/cache@v4
56+
uses: actions/cache@v5
5757
with:
5858
path: ${{ steps.go.outputs.cache }}
5959
key: ${{ runner.os }}-build-lint-${{ hashFiles('**/go.sum') }}
6060
restore-keys: ${{ runner.os }}-build-lint-
6161

6262
- name: Cache Go Dependencies
63-
uses: actions/cache@v4
63+
uses: actions/cache@v5
6464
with:
6565
path: .work/pkg
6666
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
@@ -100,14 +100,14 @@ jobs:
100100
run: echo "::set-output name=cache::$(make go.cachedir)"
101101

102102
- name: Cache the Go Build Cache
103-
uses: actions/cache@v4
103+
uses: actions/cache@v5
104104
with:
105105
path: ${{ steps.go.outputs.cache }}
106106
key: ${{ runner.os }}-build-check-diff-${{ hashFiles('**/go.sum') }}
107107
restore-keys: ${{ runner.os }}-build-check-diff-
108108

109109
- name: Cache Go Dependencies
110-
uses: actions/cache@v4
110+
uses: actions/cache@v5
111111
with:
112112
path: .work/pkg
113113
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
@@ -146,14 +146,14 @@ jobs:
146146
run: echo "::set-output name=cache::$(make go.cachedir)"
147147

148148
- name: Cache the Go Build Cache
149-
uses: actions/cache@v4
149+
uses: actions/cache@v5
150150
with:
151151
path: ${{ steps.go.outputs.cache }}
152152
key: ${{ runner.os }}-build-unit-tests-${{ hashFiles('**/go.sum') }}
153153
restore-keys: ${{ runner.os }}-build-unit-tests-
154154

155155
- name: Cache Go Dependencies
156-
uses: actions/cache@v4
156+
uses: actions/cache@v5
157157
with:
158158
path: .work/pkg
159159
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ jobs:
6868
run: echo "::set-output name=cache::$(make go.cachedir)"
6969

7070
- name: Cache the Go Build Cache
71-
uses: actions/cache@v4
71+
uses: actions/cache@v5
7272
with:
7373
path: ${{ steps.go.outputs.cache }}
7474
key: ${{ runner.os }}-build-publish-artifacts-${{ hashFiles('**/go.sum') }}
7575
restore-keys: ${{ runner.os }}-build-publish-artifacts-
7676

7777
- name: Cache Go Dependencies
78-
uses: actions/cache@v4
78+
uses: actions/cache@v5
7979
with:
8080
path: .work/pkg
8181
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)