Skip to content

Commit a579aca

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: echo 'SKIP_E2E=""' >> "$GITHUB_ENV"
4444

4545
- name: Run e2e tests
46-
run: "make test-e2e GINKGO_SKIP=${{ env.SKIP_E2E }}"
46+
run: make test-e2e "GINKGO_SKIP=$SKIP_E2E"
4747

4848
- name: Upload artifacts
4949
uses: actions/upload-artifact@v7

0 commit comments

Comments
 (0)