switching setup-go action to v3

This commit is contained in:
Christian Mouchet
2022-05-17 13:59:42 +02:00
committed by Jean-Philippe Bossuat
parent 4aa8aa5f89
commit 6565aecf5c

View File

@@ -10,13 +10,11 @@ jobs:
with:
fetch-depth: 1
- name: Setup Go
uses: actions/setup-go@v1
uses: actions/setup-go@v3
with:
go-version: 1.17
- name: Setup tools
run: |
export PATH=${PATH}:`go env GOPATH`/bin
make get_tools
run: make get_tools
- name: Run Makefile checks
run: make static_check
@@ -32,7 +30,7 @@ jobs:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v1
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}