Skip to content

Commit

Permalink
ci: Stick with Go 1.17
Browse files Browse the repository at this point in the history
As the Makefile uses deprecated Go features, GH actions
should use a fixed 1.17.* version of Golang.

Signed-off-by: Andrea Panattoni <apanatto@redhat.com>
  • Loading branch information
zeeke committed Apr 6, 2022
1 parent 2e6003b commit 9991f23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.17+
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: ^1.17
go-version: 1.17.8

- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand All @@ -28,10 +28,10 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.17+
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: ^1.17
go-version: 1.17.8

- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down

0 comments on commit 9991f23

Please sign in to comment.