Skip to content

Commit 2adb6bb

Browse files
Use cache@v3
Signed-off-by: Lukasz Gryglicki <[email protected]>
1 parent 8206ee4 commit 2adb6bb

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/build-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
python-version: '3.11'
4040
cache: 'pip'
4141
- name: Cache Go modules
42-
uses: actions/cache@v2
42+
uses: actions/cache@v3
4343
with:
4444
path: ${{ github.workspace }}/go/pkg/mod
4545
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323
with:
2424
# We must fetch at least the immediate parents so that if this is
2525
# a pull request then we can checkout the head.

.github/workflows/deploy-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
aws-region: us-east-1
5252

5353
- name: Cache Go modules
54-
uses: actions/cache@v2
54+
uses: actions/cache@v3
5555
with:
5656
path: ${{ github.workspace }}/go/pkg/mod
5757
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

.github/workflows/deploy-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
role-to-assume: arn:aws:iam::716487311010:role/github-actions-deploy
4848
aws-region: us-east-1
4949
- name: Cache Go modules
50-
uses: actions/cache@v2
50+
uses: actions/cache@v3
5151
with:
5252
path: ${{ github.workspace }}/go/pkg/mod
5353
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

.github/workflows/deploy-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
role-to-assume: arn:aws:iam::844390194980:role/github-actions-deploy
4949
aws-region: us-east-1
5050
- name: Cache Go modules
51-
uses: actions/cache@v2
51+
uses: actions/cache@v3
5252
with:
5353
path: ${{ github.workspace }}/go/pkg/mod
5454
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)