-
Notifications
You must be signed in to change notification settings - Fork 0
XDE-85: bump skillget-manager to v0.1.4 (vendor) #1
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,11 @@ | ||
| module github.com/getskillpack/cli | ||
|
|
||
| go 1.22 | ||
| go 1.22.0 | ||
|
|
||
| require github.com/getskillpack/skillget-manager v0.1.3 | ||
| toolchain go1.22.12 | ||
|
|
||
| require github.com/getskillpack/skillget-manager v0.1.4 | ||
|
|
||
| require golang.org/x/mod v0.23.0 // indirect | ||
|
|
||
| // Private org: GOPRIVATE / GONOSUMDB + Git credentials for `go build` — см. docs/BOARD_PAT_QUICK_RU.md § Go modules. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,4 @@ | ||
| github.com/getskillpack/skillget-manager v0.1.3 h1:avVsRsf6UVCgmznxOwmPT9Y3pXJAhTFPTRFou5d+wCA= | ||
| github.com/getskillpack/skillget-manager v0.1.3/go.mod h1:XDmEMMPsIni59OVQLAYlNXZqAZE7smTmj4Djsx8Gr54= | ||
| github.com/getskillpack/skillget-manager v0.1.4 h1:Qc5uvKCKWeG22MxI6u1dNKG2QDvNG7zDAyXW9c91jzo= | ||
| github.com/getskillpack/skillget-manager v0.1.4/go.mod h1:nuCuVtegzpePhhGfsqGlLiHBwg6NIgauqaNKPfK4I8E= | ||
| golang.org/x/mod v0.23.0 h1:Zb7khfcRGKk+kqfxFaP5tZqCnDZMjC5VtUBs87Hr6QM= | ||
| golang.org/x/mod v0.23.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY= |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR introduces a
toolchain go1.22.12directive. That change isn’t mentioned in the PR description and can change build behavior by forcing Go to auto-download/pin a specific patch toolchain (potentially impacting offline/hermetic builds and CI caching). If the intent is just to bumpskillget-manager, consider removing thetoolchainline; if pinning is desired, update CI/tooling docs to use the same exact Go patch (e.g., setup-gogo-version: 1.22.12) so builds don’t unexpectedly download a different toolchain.