Skip to content

Commit a5f3cf6

Browse files
committed
use env
1 parent f3481fb commit a5f3cf6

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/quality-checks.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,15 +365,16 @@ jobs:
365365
fetch-depth: 0
366366
- name: Determine docker images to scan
367367
id: normalized_docker_images
368+
env:
369+
DOCKER_IMAGES: ${{ inputs.docker_images }}
368370
run: |
369371
if [ "${{ inputs.run_docker_scan }}" != "true" ]; then
370372
echo "Docker scanning disabled; emitting empty image list."
371373
echo 'images=[]' >> "$GITHUB_OUTPUT"
372374
exit 0
373375
fi
374376
375-
INPUT='${{ inputs.docker_images }}'
376-
377+
INPUT="${DOCKER_IMAGES}"
377378
378379
if [ -z "$INPUT" ]; then
379380
INPUT="[]"

0 commit comments

Comments
 (0)