Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/release-with-sbom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -554,8 +554,10 @@ jobs:
# No NODE_AUTH_TOKEN needed - using npm Trusted Publishers (OIDC)

- name: Release complete
env:
RELEASE_VERSION: ${{ steps.version.outputs.version }}
run: |
echo "✅ Release process complete"
echo "Version: v${{ steps.version.outputs.version }}"
echo "Version: v$RELEASE_VERSION"
echo "Release URL: ${{ steps.create_release.outputs.url }}"
Copy link

Copilot AI Feb 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The run: script still embeds a GitHub expression in echo "Release URL: ${{ steps.create_release.outputs.url }}". If this change is intended to address the CodeQL code-injection alert by eliminating ${{ ... }} inside shell scripts, this line should follow the same pattern (map the expression to a step-level env: var and reference it via shell syntax) or the alert may persist.

Copilot uses AI. Check for mistakes.
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot open a new pull request to apply changes based on this feedback

echo "SBOM and detailed release notes published to GitHub release"