Skip to content

Commit 3ca699a

Browse files
authored
Merge pull request #11 from braswelljr/dependabot/github_actions/actions/cache-4
fix(deps): bump actions/cache from 3 to 4
2 parents c7a5b58 + 7e0818e commit 3ca699a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
go-version: 1.19
2525

2626
- name: Restore Go modules cache
27-
uses: actions/cache@v3
27+
uses: actions/cache@v4
2828
with:
2929
path: ~/go/pkg/mod
3030
key: go-${{ runner.os }}-${{ hashFiles('go.mod') }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: actions/checkout@v4
2929

3030
- name: Restore Go modules cache
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: ~/go/pkg/mod
3434
key: go-${{ runner.os }}-${{ hashFiles('go.mod') }}

0 commit comments

Comments
 (0)