Skip to content

Commit 2b49f3e

Browse files
committed
Bump action dependencies of "Check Go Dependencies" workflow
1 parent 4432d26 commit 2b49f3e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/check-go-dependencies-task.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Check Go Dependencies
33

44
env:
5-
# See: https://github.com/actions/setup-go/tree/v2#readme
5+
# See: https://github.com/actions/setup-go/tree/v3#readme
66
GO_VERSION: "1.16"
77

88
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v2
39+
uses: actions/checkout@v3
4040
with:
4141
submodules: recursive
4242

@@ -47,7 +47,7 @@ jobs:
4747
version: 3.x
4848

4949
- name: Install Go
50-
uses: actions/setup-go@v2
50+
uses: actions/setup-go@v3
5151
with:
5252
go-version: ${{ env.GO_VERSION }}
5353

@@ -73,7 +73,7 @@ jobs:
7373
# Some might find it convenient to have CI generate the cache rather than setting up for it locally
7474
- name: Upload cache to workflow artifact
7575
if: failure() && steps.diff.outcome == 'failure'
76-
uses: actions/upload-artifact@v2
76+
uses: actions/upload-artifact@v3
7777
with:
7878
if-no-files-found: error
7979
name: dep-licenses-cache
@@ -84,7 +84,7 @@ jobs:
8484

8585
steps:
8686
- name: Checkout repository
87-
uses: actions/checkout@v2
87+
uses: actions/checkout@v3
8888
with:
8989
submodules: recursive
9090

@@ -95,7 +95,7 @@ jobs:
9595
version: 3.x
9696

9797
- name: Install Go
98-
uses: actions/setup-go@v2
98+
uses: actions/setup-go@v3
9999
with:
100100
go-version: ${{ env.GO_VERSION }}
101101

0 commit comments

Comments
 (0)