We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3481fb commit a5f3cf6Copy full SHA for a5f3cf6
1 file changed
.github/workflows/quality-checks.yml
@@ -365,15 +365,16 @@ jobs:
365
fetch-depth: 0
366
- name: Determine docker images to scan
367
id: normalized_docker_images
368
+ env:
369
+ DOCKER_IMAGES: ${{ inputs.docker_images }}
370
run: |
371
if [ "${{ inputs.run_docker_scan }}" != "true" ]; then
372
echo "Docker scanning disabled; emitting empty image list."
373
echo 'images=[]' >> "$GITHUB_OUTPUT"
374
exit 0
375
fi
376
- INPUT='${{ inputs.docker_images }}'
-
377
+ INPUT="${DOCKER_IMAGES}"
378
379
if [ -z "$INPUT" ]; then
380
INPUT="[]"
0 commit comments