-
Notifications
You must be signed in to change notification settings - Fork 552
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Golang 1.15 was released over one month ago #74
Comments
This bumps Travis CI to the last two supported golang releases, as documented in the readme: go1.14 and go1.15. It also bumps the GitHub Code Action CI to go1.14 as it doesn't yet supported go1.15 (see actions/setup-go#74).
This bumps Travis CI to the last two supported golang releases, as documented in the readme: go1.14 and go1.15. It also bumps the GitHub Code Action CI to go1.14 as it doesn't yet supported go1.15 (see actions/setup-go#74).
This is becoming a very annoying issue to have to work around. setup-go is constantly behind versions by quite a bit. When the Go team releases a new Go version that has fixes for various CVE's, it's critical to be able to pull that version and be able to release new versions/run new builds based off that new version. The past 8 versions or so, I've been constantly behind, expecting to be able to run another build, and have it pull in an older version (sometimes more than one patch version behind!).
|
Maybe support |
FYI I use a Docker image in
|
Alternatively to get the latest: steps:
- id: vars
run: |
echo ::set-output name=go_version::$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g')
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ steps.vars.outputs.go_version }} |
I can say that https://github.com/travis-ci/gimme isn't exactly well-maintained, but was designed such that it (ideally) doesn't have to be. 😅 (I helped create it initially, although I'm not involved much anymore.) |
Looking at |
This bumps Travis CI to the last two supported golang releases, as documented in the readme: go1.14 and go1.15. It also bumps the GitHub Code Action CI to go1.14 as it doesn't yet supported go1.15 (see actions/setup-go#74).
Hi!
Go 1.15 was released on August 11th, yet we can't yet use it in our builds.
Please advise.
Thanks for considering.
(CC'ing @marbar3778)
The text was updated successfully, but these errors were encountered: