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
11 changes: 10 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ on:
workflow_dispatch: {}

jobs:
#
# Security Scan Stage
#
wiz-scan:
uses: ./.github/workflows/wiz-scan.yml
secrets: inherit

#
# Building Stage
#
Expand Down Expand Up @@ -50,7 +57,9 @@ jobs:
shell: pwsh
build-image:
runs-on: ubuntu-latest
needs: generate-version
needs:
- generate-version
- wiz-scan
permissions:
packages: write
outputs:
Expand Down
Loading