Skip to content

Commit cd79116

Browse files
committed
Update GitHub actions packages to resolve warnings
Updates actions/checkout and actions/setup-go from v2 to v3 to resolve Node.js 12 deprecation warnings. Signed-off-by: Austin Vazquez <[email protected]>
1 parent a469c0f commit cd79116

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,10 @@ jobs:
4949

5050
steps:
5151
- name: checkout
52-
uses: actions/checkout@v2
52+
uses: actions/checkout@v3
5353
- name: install go ${{ matrix.go-version }}
54-
uses: actions/setup-go@v2
54+
uses: actions/setup-go@v3
5555
with:
56-
stable: '!contains(${{ matrix.go-version }}, "beta") && !contains(${{ matrix.go-version }}, "rc")'
5756
go-version: ${{ matrix.go-version }}
5857
- name: build
5958
run: make EXTRA_FLAGS="${{ matrix.race }}"

0 commit comments

Comments
 (0)