Skip to content

Commit 7215969

Browse files
wikkykclaude
andcommitted
ci(release): use quoted shell expansion for RELEASE_VERSION
Replace ${{ env.RELEASE_TAG }} expression interpolation with quoted shell variable expansion "$RELEASE_TAG" to prevent potential command injection via the environment variable. Co-authored-by: Claude <noreply@anthropic.com>
1 parent a579aca commit 7215969

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
go-version-file: go.mod
2727
- name: generate release artifacts
2828
run: |
29-
make release-manifests RELEASE_VERSION=${{ env.RELEASE_TAG }}
29+
make release-manifests "RELEASE_VERSION=$RELEASE_TAG"
3030
- name: generate release templates
3131
run: |
3232
make release-templates

0 commit comments

Comments
 (0)