Maintenance updates and fixes - #554
Open
ademidoff wants to merge 5 commits into
Open
Conversation
Contributor
|
1 similar comment
Contributor
|
ademidoff
requested review from
4nte,
artemgavrilov,
Copilot and
eleo007
and removed request for
eleo007
July 23, 2026 11:06
There was a problem hiding this comment.
Pull request overview
This PR performs maintenance upgrades by bumping the project’s Go toolchain version, refreshing several Go dependencies, and improving automation around security/dependency scanning and updates.
Changes:
- Updated all Go modules to Go
1.26.5and refreshed key module dependencies (grpc/protobuf/genproto and OpenTelemetry). - Updated Docker build/test base images to
golang:1.26. - Added Dependabot configuration and updated/pinned GitHub Actions used by the Trivy scan workflow.
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| tools/go.mod | Bumps the tools module Go version to 1.26.5. |
| api/go.mod | Bumps the API module Go version to 1.26.5. |
| go.mod | Bumps root module Go version and updates core deps (grpc/protobuf/genproto, OTel). |
| go.sum | Adds checksums for updated/new dependency versions. |
| Dockerfile | Updates build image to Go 1.26. |
| Dockerfile.test | Updates test image to Go 1.26. |
| .github/workflows/scan.yml | Updates/pins actions and bumps Trivy action version used for image scanning. |
| .github/dependabot.yml | Adds Dependabot configuration for automated updates. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Contributor
|
Contributor
|
artemgavrilov
approved these changes
Jul 23, 2026
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 updates the project to use Go 1.26.5, refreshes several dependencies, and introduces configuration for Dependabot to automate dependency updates. It also updates the Trivy vulnerability scanner GitHub Action to a newer version.
Go version and dependency updates:
go.mod,api/go.mod, andtools/go.mod, and updated base images inDockerfileandDockerfile.testto usegolang:1.26.go.mod, includinggoogle.golang.org/genproto,google.golang.org/grpc,google.golang.org/protobuf, andgo.opentelemetry.io/oteland related packages.Automation and CI improvements:
.github/dependabot.ymlconfiguration to enable weekly automated dependency checks for Go modules, Docker, and GitHub Actions.v0.36.0in.github/workflows/scan.yml.