[codex] consolidate Go version#598
Merged
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #598 +/- ##
==========================================
+ Coverage 67.38% 67.43% +0.05%
==========================================
Files 53 53
Lines 5644 5644
==========================================
+ Hits 3803 3806 +3
+ Misses 1614 1612 -2
+ Partials 227 226 -1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Consolidates the repository’s Go toolchain/version references to a single pinned version and replaces the previous AGENTS.md pointer with a repo-specific contributor guide.
Changes:
- Pin Go version references across
go.mod, CI workflows, Docker build images, and docs to1.26.2. - Update
.tool-versionsto match the pinned Go version. - Replace
AGENTS.mdcontent with repository guidelines and contributor instructions.
Reviewed changes
Copilot reviewed 13 out of 13 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| go.mod | Updates the module Go version directive to 1.26.2. |
| .tool-versions | Pins the asdf golang tool version to 1.26.2. |
| docker/Dockerfile.build | Pins the Docker build stage image to golang:1.26.2-alpine. |
| .github/workflows/release.yml | Pins actions/setup-go to 1.26.2 for release jobs. |
| .github/workflows/integration-tests.yml | Pins actions/setup-go to 1.26.2 for integration jobs. |
| .github/workflows/e2e-tests.yml | Pins actions/setup-go to 1.26.2 for e2e jobs. |
| .github/workflows/cross-platform.yml | Pins actions/setup-go to 1.26.2 for cross-platform jobs. |
| .github/workflows/codecov.yml | Pins actions/setup-go to 1.26.2 for coverage jobs. |
| docs/installation.md | Updates multi-stage Docker example to golang:1.26.2-alpine. |
| docs/docker.md | Updates multi-stage Docker example to golang:1.26.2-alpine. |
| docs/development.md | Updates dev env docs and download commands to Go 1.26.2. |
| README.md | Updates the stated minimum/required Go version to 1.26.2. |
| AGENTS.md | Replaces single-line pointer with a full repository contributor guide. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| module github.com/abtreece/confd | ||
|
|
||
| go 1.26 | ||
| go 1.26.2 |
|
|
||
| ```dockerfile | ||
| FROM golang:1.25-alpine AS confd-builder | ||
| FROM golang:1.26.2-alpine AS confd-builder |
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.
Summary
Validation