forked from mystiq/dex
revert: move container scan back to the container build step
Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
This commit is contained in:
parent
b8f2186593
commit
a9fb4ae7ef
1 changed files with 2 additions and 26 deletions
28
.github/workflows/artifacts.yaml
vendored
28
.github/workflows/artifacts.yaml
vendored
|
@ -17,8 +17,6 @@ jobs:
|
||||||
variant:
|
variant:
|
||||||
- alpine
|
- alpine
|
||||||
- distroless
|
- distroless
|
||||||
outputs:
|
|
||||||
version: ${{ steps.details.outputs.version }}
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
@ -103,38 +101,16 @@ jobs:
|
||||||
org.opencontainers.image.licenses=${{ github.event.repository.license.spdx_id }}
|
org.opencontainers.image.licenses=${{ github.event.repository.license.spdx_id }}
|
||||||
org.opencontainers.image.documentation=https://dexidp.io/docs/
|
org.opencontainers.image.documentation=https://dexidp.io/docs/
|
||||||
|
|
||||||
container-scan:
|
|
||||||
name: Container scan
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: container-images
|
|
||||||
if: github.event_name == 'push'
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
variant:
|
|
||||||
- alpine
|
|
||||||
- distroless
|
|
||||||
|
|
||||||
steps:
|
|
||||||
# Workaround for lack of matrix output support
|
|
||||||
- name: Calculate container image details
|
|
||||||
id: details
|
|
||||||
run: |
|
|
||||||
VERSION="${{ needs.container-images.outputs.version }}"
|
|
||||||
|
|
||||||
if [[ "${{ matrix.variant }}" != "alpine" ]]; then
|
|
||||||
VERSION="${VERSION}-${{ matrix.variant }}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo ::set-output name=version::${VERSION}
|
|
||||||
|
|
||||||
- name: Run Trivy vulnerability scanner
|
- name: Run Trivy vulnerability scanner
|
||||||
uses: aquasecurity/trivy-action@0.2.5
|
uses: aquasecurity/trivy-action@0.2.5
|
||||||
with:
|
with:
|
||||||
image-ref: "ghcr.io/dexidp/dex:${{ steps.details.outputs.version }}"
|
image-ref: "ghcr.io/dexidp/dex:${{ steps.details.outputs.version }}"
|
||||||
format: "sarif"
|
format: "sarif"
|
||||||
output: "trivy-results.sarif"
|
output: "trivy-results.sarif"
|
||||||
|
if: github.event_name == 'push'
|
||||||
|
|
||||||
- name: Upload Trivy scan results to GitHub Security tab
|
- name: Upload Trivy scan results to GitHub Security tab
|
||||||
uses: github/codeql-action/upload-sarif@v1
|
uses: github/codeql-action/upload-sarif@v1
|
||||||
with:
|
with:
|
||||||
sarif_file: "trivy-results.sarif"
|
sarif_file: "trivy-results.sarif"
|
||||||
|
if: github.event_name == 'push'
|
||||||
|
|
Loading…
Reference in a new issue