-
Notifications
You must be signed in to change notification settings - Fork 531
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
Need 1.20.7 - consider automating go-versions availability? #405
Comments
@ldemailly This seems to be a recurring issue everytime there's a new go release. It doesn't help that the Golang team forces you to use the latest jobs:
govulncheck-check:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Fetch Repository
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
check-latest: true
cache: false
- name: Install Govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Run govulncheck
run: govulncheck ./... I thought that using |
Yes see the previous issue - it's hardcoded in go-versions repo |
For the supported go branches, latest version can be automatically retrieved from https://go.dev/dl/?mode=json. |
I'm glad actions/go-versions#80 got merged but is there a way to accelerate that process (maybe even "trust" the go team and not delay the version by a human review) |
Additionally, https://go.dev/VERSION?m=text will retrieve the latest go version and can be easily used to get the latest go binary ( |
@ldemailly i am closing the issue because actions/go-versions#80 fixed it, please feel free to reopen it or create new one in case if it still exists |
Need check-latest to pick up 1.20.7
my CI is failing because of govulncheck flagging the security issue in 1.20.6
Originally posted by @ldemailly in #373 (comment)
The text was updated successfully, but these errors were encountered: