Skip to content

Commit 01212ce

Browse files
maennchenjosevalim
authored andcommitted
Suppress false-positive github-env warnings from zizmor
The GITHUB_PATH and GITHUB_ENV writes are safe as they use only workflow-controlled values, not attacker-controlled input. See: https://docs.zizmor.sh/audits/#github-env
1 parent 31d62fd commit 01212ce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release_pre_built/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525

2626
- name: Build Elixir Release
2727
shell: bash
28-
run: |
28+
run: | # zizmor: ignore[github-env]
2929
make Precompiled.zip
3030
mv Precompiled.zip "elixir-otp-${INPUT_OTP}.zip"
3131
echo "$PWD/bin" >> $GITHUB_PATH
@@ -51,7 +51,7 @@ runs:
5151
- name: Get ExDoc ref
5252
if: ${{ inputs.build_docs }}
5353
shell: bash
54-
run: |
54+
run: | # zizmor: ignore[github-env]
5555
if [ "$GITHUB_REF_NAME" = "main" ]; then
5656
ref=main
5757
else

0 commit comments

Comments
 (0)