X Tutup
Skip to content

Commit 65d90aa

Browse files
authored
Merge pull request cli#5336 from cli/dependabot/github_actions/actions/cache-3
Bump actions/cache from 2 to 3
2 parents c7bd3f8 + b090ef0 commit 65d90aa

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
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@v3
2323

2424
- name: Restore Go modules cache
25-
uses: actions/cache@v2
25+
uses: actions/cache@v3
2626
with:
2727
path: ~/go/pkg/mod
2828
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@v3
2929

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

0 commit comments

Comments
 (0)
X Tutup