security fixes#138
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the repository’s Go toolchain/dependencies and container build to address CVE-related security concerns in the platform controllers codebase.
Changes:
- Bumped several
golang.org/x/*dependencies ingo.mod/go.sum. - Updated the Go version referenced by
go.modand GitHub Actions workflows. - Removed Pulumi installation/copy steps from the Docker image build.
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
go.mod |
Updates Go version and indirect golang.org/x/* module versions. |
go.sum |
Updates checksums to match the bumped golang.org/x/* modules. |
docker/Dockerfile |
Removes Pulumi CLI installation and runtime wiring from the image. |
.github/workflows/ci.yml |
Updates CI Go version. |
.github/workflows/release.yml |
Updates release workflow Go version. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+3
to
4
| go 1.26.4 | ||
|
|
Comment on lines
13
to
15
| COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ | ||
| COPY --from=builder --chown=nonroot /root/.pulumi/ /home/nonroot/.pulumi/ | ||
| COPY --chown=nonroot /$PKG_FILES / | ||
| ENV PATH="/home/nonroot/.pulumi/bin:${PATH}" | ||
| USER nonroot |
Comment on lines
+3
to
+5
| go 1.26.0 | ||
|
|
||
| toolchain go1.26.4 |
Comment on lines
17
to
+20
| - name: Set up Go | ||
| uses: actions/setup-go@v2 | ||
| with: | ||
| go-version: '1.26.2' | ||
| go-version: '1.26.4' |
Comment on lines
33
to
+36
| - name: Set up Go | ||
| uses: actions/setup-go@v2 | ||
| with: | ||
| go-version: '1.26.2' | ||
| go-version: '1.26.4' |
oncicaradupopovici
approved these changes
Jun 4, 2026
oncicaradupopovici
approved these changes
Jun 5, 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.
update for CVE fixes