feat(ci): update checkout and setup-go actions (#326)

* Update Github checkout action to v3

* Update Github action setup-go to v4

* Get Go version from `go.mod`
This commit is contained in:
Gregor Zurowski
2023-05-19 16:41:20 +02:00
committed by GitHub
parent 85eeb860bf
commit 6144ac7979
4 changed files with 13 additions and 13 deletions

View File

@@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: 1.19.x
go-version-file: go.mod
- name: Install dependencies
run: |
sudo apt update -qq