Remove code-quality workflow, update and pin all actions#270
Merged
Ramal Abeysekera (ramalabeysekera) merged 3 commits intomainfrom Apr 14, 2026
Merged
Remove code-quality workflow, update and pin all actions#270Ramal Abeysekera (ramalabeysekera) merged 3 commits intomainfrom
Ramal Abeysekera (ramalabeysekera) merged 3 commits intomainfrom
Conversation
Copilot started reviewing on behalf of
Lachlan Kidson (lachlankidson)
April 14, 2026 11:07
View session
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s CI/CD configuration by removing the standalone CodeQL workflow (relying on org-level configuration), upgrading and pinning GitHub Actions to commit SHAs, and bumping the project’s Go version to 1.26.
Changes:
- Remove
.github/workflows/code-quality.yml(previously ran CodeQL + golangci-lint). - Pin all referenced GitHub Actions to specific commit SHAs and update action versions.
- Update Go version (go.mod) and the Docker builder image to Go 1.26.x.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
go.mod |
Bumps the module Go version to 1.26.2 (used by CI via go-version-file). |
Dockerfile |
Updates builder base image to golang:1.26. |
.github/workflows/test-build.yml |
Pins actions and switches to go-version-file: go.mod for Go version selection. |
.github/workflows/release.yml |
Pins checkout/docker/helm actions to commit SHAs. |
.github/workflows/helm.yml |
Pins actions; continues running chart-testing and helm-docs workflows. |
.github/workflows/e2e.yaml |
Pins checkout and kind actions to commit SHAs. |
.github/workflows/code-quality.yml |
Removes the workflow that previously ran CodeQL and golangci-lint. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Ramal Abeysekera (ramalabeysekera)
approved these changes
Apr 14, 2026
Contributor
Ramal Abeysekera (ramalabeysekera)
left a comment
There was a problem hiding this comment.
LGTM 🚀
Merged
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.
Remove explicit CodeQL workflow as CodeQL is configured to run automatically for PRs against repositories in this GitHub organisation, this also addresses the allowlisting issues.
Other changes: