chore: dependency update#154
Merged
demeyerthom merged 1 commit intomainfrom Apr 3, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates Go toolchain and dependencies, including migrating the securityprovider import from the legacy deepmap/oapi-codegen module path to oapi-codegen/oapi-codegen/v2.
Changes:
- Bump Go version to
1.26.1and update.tool-versionsto match. - Update a large set of Go module dependencies (notably
github.com/oapi-codegen/oapi-codegen/v2and Terraform plugin libraries). - Add a GitHub Actions workflow intended to provide Copilot setup steps for the repo.
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
internal/utils/client.go |
Switch securityprovider import to github.com/oapi-codegen/oapi-codegen/v2/.... |
go.mod |
Update Go version and bump direct/indirect dependencies. |
go.sum |
Refresh module checksums to match updated dependencies. |
.tool-versions |
Align local toolchain Go version with go.mod. |
.github/workflows/copilot-setup-steps.yaml |
Add workflow to install common tooling (Go, Terraform, Task, GoReleaser, Changie, golangci-lint). |
bafb72a to
3a75a83
Compare
3a75a83 to
ec1ebaf
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request primarily updates the project dependencies to more recent versions, including a major upgrade to Go 1.26.1, and adds a new GitHub Actions workflow for setting up the development environment. The updates should improve compatibility, security, and maintainability across the codebase.
Dependency and tooling updates:
.tool-versionsandgo.mod, ensuring the project uses the latest language features and improvements. [1] [2]go.mod, includinghashicorplibraries,oapi-codegen,testify, and many indirect dependencies, which brings in bug fixes, new features, and security patches. [1] [2]securityproviderto the newoapi-codegen/oapi-codegen/v2package ininternal/utils/client.goto match the updated dependency.CI/CD improvements:
.github/workflows/copilot-setup-steps.yamlto automate environment setup, including installing Go, Terraform, Task, GoReleaser, Changie, and runninggolangci-lint.