chore: update Go 1.20 and Go 1.21 images #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NOTE refs | |
# - https://github.com/aquasecurity/trivy-action#using-trivy-to-scan-your-private-registry | |
name: scan | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: "0 0 * * MON" | |
workflow_dispatch: {} | |
permissions: | |
contents: read | |
security-events: write | |
concurrency: | |
group: ${{ github.run_id }} | |
cancel-in-progress: false | |
jobs: | |
prepare: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- uses: GeoNet/yq@bbe305500687a5fe8498d74883c17f0f06431ac4 # master | |
- id: set | |
run: | | |
echo "matrix=$(jq -r -c '.sync as $sync | .build as $build | {"include":[{"destination": $sync[].destination}, {"destination": $build[].destination}]}' <<< "$(yq e . -o json config.yaml)")" >> $GITHUB_OUTPUT | |
- name: check output | |
run: | | |
jq . <<< '${{ steps.set.outputs.matrix }}' | |
scan: | |
if: ${{ fromJSON(needs.prepare.outputs.matrix) != null }} | |
needs: prepare | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- uses: GeoNet/setup-crane@00c9e93efa4e1138c9a7a5c594acd6c75a2fbf0c # main | |
- name: get-digests | |
id: get-digests | |
env: | |
DESTINATION: ${{ fromJSON(toJSON(matrix)).destination }} | |
run: | | |
DESTINATION_DIGEST="$(crane digest "${DESTINATION}" || true)" | |
( | |
echo "DESTINATION-DIGEST" | |
echo "$DESTINATION_DIGEST" | |
) | column -t | |
echo "destination=${DESTINATION_DIGEST}" >> $GITHUB_OUTPUT | |
- name: Run Trivy vulnerability scanner | |
if: ${{ steps.get-digests.outputs.destination != null }} | |
uses: aquasecurity/trivy-action@fbd16365eb88e12433951383f5e99bd901fc618f # 0.12.0 | |
with: | |
image-ref: '${{ fromJSON(toJSON(matrix)).destination }}' | |
format: 'sarif' | |
output: 'trivy-results.sarif' | |
# format: 'table' | |
exit-code: '1' | |
ignore-unfixed: true | |
vuln-type: 'os,library' | |
severity: 'CRITICAL,HIGH' | |
- name: Upload Trivy scan results to GitHub Security tab | |
if: ${{ steps.get-digests.outputs.destination != null }} | |
uses: github/codeql-action/upload-sarif@f31a31c052207cc13b328d6295c5b728bb49568c # codeql-bundle-20230428 | |
with: | |
sarif_file: 'trivy-results.sarif' |