File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 22name : Check Go Dependencies
33
44env :
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
3636
3737 steps :
3838 - name : Checkout repository
39- uses : actions/checkout@v2
39+ uses : actions/checkout@v3
4040 with :
4141 submodules : recursive
4242
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
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
8484
8585 steps :
8686 - name : Checkout repository
87- uses : actions/checkout@v2
87+ uses : actions/checkout@v3
8888 with :
8989 submodules : recursive
9090
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
You can’t perform that action at this time.
0 commit comments