Skip to content

Commit 8b220dd

Browse files
authored
Merge pull request #976 from gitlabhq/dependabot/github_actions/actions/cache-3
build(deps): bump actions/cache from 2 to 3
2 parents 08fd281 + 251b6c9 commit 8b220dd

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/pr-acceptance-ce.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
go-version: ${{ needs.go-version.outputs.go-version }}
3838
- uses: actions/checkout@v3
3939
# Cache the Go modules.
40-
- uses: actions/cache@v2
40+
- uses: actions/cache@v3
4141
with:
4242
path: ~/go/pkg/mod
4343
key: ${{ github.job }}-${{ runner.os }}-go${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum', 'GNUMakefile') }}

.github/workflows/pr-acceptance-ee.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
ref: ${{ github.event.pull_request.head.sha }}
8989
persist-credentials: false
9090
# Cache the Go modules.
91-
- uses: actions/cache@v2
91+
- uses: actions/cache@v3
9292
with:
9393
path: ~/go/pkg/mod
9494
key: ${{ github.job }}-${{ runner.os }}-go${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum', 'GNUMakefile') }}

.github/workflows/pr-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
go-version: ${{ needs.go-version.outputs.go-version }}
4040
- uses: actions/checkout@v3
4141
# Cache the Go modules and compiled tools for the specific lint target.
42-
- uses: actions/cache@v2
42+
- uses: actions/cache@v3
4343
with:
4444
path: |
4545
~/go/pkg/mod
@@ -60,7 +60,7 @@ jobs:
6060
go-version: ${{ needs.go-version.outputs.go-version }}
6161
- uses: actions/checkout@v3
6262
# Cache the Go modules.
63-
- uses: actions/cache@v2
63+
- uses: actions/cache@v3
6464
with:
6565
path: ~/go/pkg/mod
6666
key: ${{ github.job }}-${{ runner.os }}-go${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum', 'GNUMakefile') }}

.github/workflows/push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
go-version: ${{ needs.go-version.outputs.go-version }}
5252
- uses: actions/checkout@v3
5353
# Cache the Go modules and compiled tools for the specific lint target.
54-
- uses: actions/cache@v2
54+
- uses: actions/cache@v3
5555
with:
5656
path: |
5757
~/go/pkg/mod
@@ -72,7 +72,7 @@ jobs:
7272
go-version: ${{ needs.go-version.outputs.go-version }}
7373
- uses: actions/checkout@v3
7474
# Cache the Go modules.
75-
- uses: actions/cache@v2
75+
- uses: actions/cache@v3
7676
with:
7777
path: ~/go/pkg/mod
7878
key: ${{ github.job }}-${{ runner.os }}-go${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum', 'GNUMakefile') }}
@@ -101,7 +101,7 @@ jobs:
101101
go-version: ${{ needs.go-version.outputs.go-version }}
102102
- uses: actions/checkout@v3
103103
# Cache the Go modules.
104-
- uses: actions/cache@v2
104+
- uses: actions/cache@v3
105105
with:
106106
path: ~/go/pkg/mod
107107
key: ${{ github.job }}-${{ runner.os }}-go${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum', 'GNUMakefile') }}
@@ -121,7 +121,7 @@ jobs:
121121
go-version: ${{ needs.go-version.outputs.go-version }}
122122
- uses: actions/checkout@v3
123123
# Cache the Go modules.
124-
- uses: actions/cache@v2
124+
- uses: actions/cache@v3
125125
with:
126126
path: ~/go/pkg/mod
127127
key: ${{ github.job }}-${{ runner.os }}-go${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum', 'GNUMakefile') }}

0 commit comments

Comments
 (0)