Skip to content

Commit

Permalink
[local] Fix CI for master-1.12 branch
Browse files Browse the repository at this point in the history
That branch (and really, cluster-autoscaler-1.28.x) won't pass CI
anymore as its `GO111MODULE=auto` will break with golang >= 1.21,
yet the CI specified `'>=1.20.0'`, so it broke when a newer version
of `actions/setup-go` was provided.
  • Loading branch information
bpineau committed Jun 6, 2024
1 parent 71472ee commit 395549a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '>=1.20.0'
go-version: '1.20.14'

- uses: actions/checkout@v2
with:
Expand Down

0 comments on commit 395549a

Please sign in to comment.