Promote release 0.90.5 to main - #105
Merged
Merged
Conversation
✅ OSS Checks PassedAll tracked OSS checks passed in this run.
Results from commit ce2badd, view the full job summary |
There was a problem hiding this comment.
Pull request overview
Promotes release 0.90.5 to main, primarily updating GitHub Actions used by CI/release workflows and recording the change in the changelog.
Changes:
- Add a
0.90.5entry toCHANGELOG.md. - Update GitHub Actions versions in CI and release workflows.
- Bump pinned GitHub Action SHAs in release-related workflows.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| CHANGELOG.md | Adds release notes for 0.90.5 noting GitHub Actions updates. |
| .github/workflows/release.yml | Updates checkout/setup-java/login-action versions used to verify and publish images. |
| .github/workflows/publish-github-release.yml | Bumps pinned SHAs for actions/checkout and softprops/action-gh-release. |
| .github/workflows/oss-checker.yml | Bumps pinned SHA for actions/checkout in the OSS checker workflow. |
| .github/workflows/ci-pr.yml | Updates checkout/setup-java versions used for PR CI build and lint jobs. |
Suppressed comments (2)
.github/workflows/release.yml:44
- Pin
actions/checkoutto a specific commit SHA (as done in other workflows) rather than the floating@v7tag to avoid unexpected upstream changes.
- name: Checkout code
uses: actions/checkout@v7
.github/workflows/ci-pr.yml:31
- Pin the
lintjob’sactions/checkoutandactions/setup-javato commit SHAs rather than floating major tags to keep CI runs reproducible and reduce supply-chain risk.
- uses: actions/checkout@v7
- name: Set up JDK 21
uses: actions/setup-java@v5
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
20
to
+23
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v7 | ||
| - name: Setup Java/Maven | ||
| uses: actions/setup-java@v4 | ||
| uses: actions/setup-java@v5 |
Comment on lines
14
to
+17
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/checkout@v7 | ||
| - name: Set up JDK 21 | ||
| uses: actions/setup-java@v4 | ||
| uses: actions/setup-java@v5 |
Comment on lines
48
to
+49
| - name: Login to ghcr.io | ||
| uses: docker/login-action@v3 | ||
| uses: docker/login-action@v4 |
cruddasj
approved these changes
Aug 13, 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.
Promote release 0.90.5 to main