Promote release 0.90.2 to main - #22
Merged
Merged
Conversation
* chore: update changelog for GitHub Actions version updates * chore: assign next release version to changelog entry
✅ OSS Checks PassedAll tracked OSS checks passed in this run.
Results from commit f16311e, view the full job summary |
There was a problem hiding this comment.
Pull request overview
Promotes release 0.90.2 to main by updating workflow dependencies (GitHub Actions) and recording the release in the changelog.
Changes:
- Added a
0.90.2entry toCHANGELOG.md. - Updated GitHub Actions versions in multiple workflows (checkout, release creation, Java setup, artifact upload).
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| CHANGELOG.md | Adds release 0.90.2 notes and date. |
| .github/workflows/publish-github-release.yml | Pins updated action SHAs for checkout and GitHub release creation. |
| .github/workflows/oss-checker.yml | Pins updated checkout action SHA for multiple repository checkouts. |
| .github/workflows/deploy-to-ghcr-when-main.yml | Bumps action major versions (currently via floating tags) for checkout, setup-java, and upload-artifact. |
| .github/workflows/build-compose-action.yml | Bumps action major versions (currently via floating tags) for checkout, setup-java, and upload-artifact. |
Suppressed comments (4)
.github/workflows/deploy-to-ghcr-when-main.yml:49
- This workflow uses a floating major tag for actions/setup-java. To align with the repo’s supply-chain hardening (most other actions are pinned to SHAs), pin actions/setup-java to the commit SHA for the intended release instead of @v5.
uses: actions/setup-java@v5
.github/workflows/deploy-to-ghcr-when-main.yml:79
- This workflow uses a floating major tag for actions/upload-artifact, which can change behavior over time. Elsewhere in the repo this action is pinned to a commit SHA (e.g., .github/workflows/publish-github-release.yml:94, .github/workflows/oss-checker.yml:469). Pinning here would improve reproducibility and supply-chain security.
uses: actions/upload-artifact@v7
.github/workflows/build-compose-action.yml:47
- This workflow uses a floating major tag for actions/setup-java. To align with the repo’s supply-chain hardening (most other actions are pinned to SHAs), pin actions/setup-java to the commit SHA for the intended release instead of @v5.
uses: actions/setup-java@v5
.github/workflows/build-compose-action.yml:77
- This workflow uses a floating major tag for actions/upload-artifact, which can change behavior over time. Elsewhere in the repo this action is pinned to a commit SHA (e.g., .github/workflows/publish-github-release.yml:94, .github/workflows/oss-checker.yml:469). Pinning here would improve reproducibility and supply-chain security.
uses: actions/upload-artifact@v7
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v7 |
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v7 |
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.2 to main