Skip to content
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

"go tidy" action uses go1.18, which cannot work with go.mod containing go1.19 #22

Closed
johanneskastl opened this issue Mar 1, 2023 · 1 comment · Fixed by #25
Closed

Comments

@johanneskastl
Copy link
Contributor

johanneskastl commented Mar 1, 2023

https://github.com/dims/community-images/blob/572f1f579be0a510e026f70b8173abb2cbd44465/.github/workflows/go.yml#L23

go: go.mod file indicates go 1.19, but maximum version supported by tidy is 1.18

https://github.com/johanneskastl/community-images/actions/runs/4303393509/jobs/7503072657

@nikhita
Copy link
Member

nikhita commented Mar 1, 2023

@johanneskastl can you update the workflow to use:

- name: Setup Go
  uses: actions/setup-go@v2
  with:
    go-version: ‘1.19.0’

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants