Skip to content

chore: Bump actions/setup-go from 5.6.0 to 6.4.0#1070

Open
dependabot[bot] wants to merge 1 commit intonotebooks-v2from
dependabot/github_actions/notebooks-v2/actions/setup-go-6.4.0
Open

chore: Bump actions/setup-go from 5.6.0 to 6.4.0#1070
dependabot[bot] wants to merge 1 commit intonotebooks-v2from
dependabot/github_actions/notebooks-v2/actions/setup-go-6.4.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 30, 2026

Bumps actions/setup-go from 5.6.0 to 6.4.0.

Release notes

Sourced from actions/setup-go's releases.

v6.4.0

What's Changed

Enhancement

Dependency update

Documentation update

New Contributors

Full Changelog: actions/setup-go@v6...v6.4.0

v6.3.0

What's Changed

Full Changelog: actions/setup-go@v6...v6.3.0

v6.2.0

What's Changed

Enhancements

Dependency updates

New Contributors

Full Changelog: actions/setup-go@v6...v6.2.0

v6.1.0

What's Changed

Enhancements

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5.6.0 to 6.4.0.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@40f1582...4a36011)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-version: 6.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Apr 30, 2026
@dependabot dependabot Bot added the github_actions Pull requests that update GitHub Actions code label Apr 30, 2026
@github-project-automation github-project-automation Bot moved this to Needs Triage in Kubeflow Notebooks Apr 30, 2026
@google-oss-prow google-oss-prow Bot added the area/ci area - related to ci label Apr 30, 2026
@google-oss-prow google-oss-prow Bot added area/v2 area - version - kubeflow notebooks v2 size/S labels Apr 30, 2026
@christian-heusel
Copy link
Copy Markdown
Contributor

/lgtm
/ok-to-test

Copy link
Copy Markdown

@paulovmr paulovmr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm
/approve

@google-oss-prow
Copy link
Copy Markdown

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: paulovmr
Once this PR has been reviewed and has the lgtm label, please assign andyatmiami for approval. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

Copy link
Copy Markdown
Contributor

@andyatmiami andyatmiami left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doesn't seem like this is going to work as is...

  Run make build                                                                                                                                                                                                                                                                                                                                           
    make build                                                                                                                                                                                                                                                                                                                                             
    shell: /usr/bin/bash -e {0}                                                                                                                                                                                                                                                                                                                            
    env:                                                                                                                                                                                                                                                                                                                                                   
      GOTOOLCHAIN: local                                                                                                                                                                                                                                                                                                                                   
  Downloading sigs.k8s.io/controller-tools/cmd/controller-gen@v0.20.1                                                                                                                                                                                                                                                                                      
  go: sigs.k8s.io/controller-tools/cmd/controller-gen@v0.20.1: sigs.k8s.io/controller-tools@v0.20.1 requires go >= 1.25.0 (running go 1.24.13; GOTOOLCHAIN=local)                                                                                                                                                                                          
  make: *** [Makefile:188: /home/runner/work/kubeflow-notebooks/kubeflow-notebooks/workspaces/controller/bin/controller-gen] Error 1     

Claude analysis:

The issue: the controller's Makefile runs go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.20.1 which internally requires go >= 1.25.0. With v5, Go would silently auto-download a go 1.25 toolchain. With v6's GOTOOLCHAIN=local, that auto-download is blocked and the build fails.                                                       
                                                                                                                                                                                                                                                                                                                                                           
  This means my verdict on PR #1070 should be revised:                                                                                                                                                                                                                                                                                                     
                                                                                                                                                                                                                                                                                                                                                           
  Verdict: ❌ Workflow update required before merging                                                                                                                                                                                                                                                                                                      
                                                            
  Options to fix:                                                                                                                                                                                                                                                                                                                                          
                                                            
  1. Bump go.mod to go 1.25.x — aligns the project with what its tooling requires, but is a broader change                                                                                                                                                                                                                                                 
  2. Override GOTOOLCHAIN in the workflow step — add env: GOTOOLCHAIN: auto to the make build step to restore the old behavior, but this defeats the purpose of the v6 safety improvement
  3. Pin controller-gen to a version that works with go 1.24 — may not be feasible if v0.20.1 is needed                                                                                                                                                                                                                                                    
  4. Stay on actions/setup-go@v5 until the project is ready to bump to go 1.25 — safest short-term option

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/ci area - related to ci area/v2 area - version - kubeflow notebooks v2 dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code ok-to-test size/S

Projects

Status: Needs Triage

Development

Successfully merging this pull request may close these issues.

3 participants