Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion actions/build_scan_image/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ inputs:
failure_severity:
description: 'The severity to fail on. Must be [CRITICAL,HIGH,MEDIUM]'
required: true
github_token:
description: 'Github access token for calling repo'
required: true

runs:
using: "composite"

Expand All @@ -25,7 +29,7 @@ runs:
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ inputs.github_token }}

- name: Extract metadata (tags, labels) for Docker
id: meta
Expand Down