-
Notifications
You must be signed in to change notification settings - Fork 170
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
chore: installation for Go 1.18 #350
chore: installation for Go 1.18 #350
Conversation
Would it be too much to ask you to add 1.17.x and 1.18.x to the github action build matrix here: https://github.com/segmentio/chamber/blob/master/.github/workflows/build.yml#L14 |
4c61817
to
44d888b
Compare
certainly, if that's ok |
how about |
I'll just add and ask for forgiveness 😆 |
My gut tells me to update those as well. I don't see any reason why they should fail. But I don't want to throw unnecessary work on you. Feel free to try it but if it fails don't worry about it. |
done, thanks for attending to this! I'm kinda surprised no one has encountered this yet. |
I'm not really sure why the go 1.18.x fails to find chamber after "installing" with go get, other than maybe go get doesn't work anymore in the same way?
|
Yup: https://go.dev/doc/go-get-install-deprecation:
|
I don't want to block your PR, you have a couple of options:
|
hey sorry for the late reply, yeah that's exactly what this PR is trying to resolve, let me check later how to fix the pipeline |
I don't have other go version installed locally, so here's what I'm gonna try:
|
2f23476
to
120bac0
Compare
what do I know? it works! |
Alright everything passed except that dockerhub login which I think was broken before or is at least flaky, I'll approve the PR. |
cool, looking forward to the new version! |
cc @rikez do you know why the docker hub login github action task fails? I remember it happened before for you |
@asaf-erlich It is failing because secrets aren't available in repo forks. Basically, the job is attempting to log in to Docker Registry using empty login and password values. This docker step should be removed from feature branches. Let me open a PR to remove it. #351 |
@asaf-erlich would be great if we can get a new version of this so that installation is easier |
@mrkagelui I will create a backlog ticket for the team to prioritize a new release. |
awesome, thank you and the team for this great tool, lots of ❤️ |
addresses #349