Skip to content

Commit 26f0702

Browse files
[AppSec] AI Fix for Template Injection in GitHub Workflows Action (#7448)
Co-authored-by: aikido-autofix[bot] <119856028+aikido-autofix[bot]@users.noreply.github.com> Co-authored-by: Matt Andreko <mandreko@bitwarden.com>
1 parent 94f2bc3 commit 26f0702

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,13 @@ jobs:
9595
- project_name: Sso
9696
steps:
9797
- name: Print environment
98+
env:
99+
DRY_RUN: ${{ inputs.dry_run }}
98100
run: |
99101
whoami
100102
echo "GitHub ref: $GITHUB_REF"
101103
echo "GitHub event: $GITHUB_EVENT"
102-
echo "Dry Run: ${{ inputs.dry_run }}"
104+
echo "Dry Run: $DRY_RUN"
103105
104106
- name: Set up project name
105107
id: setup

0 commit comments

Comments
 (0)