Bumps the all group with 3 updates: [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action), [dorny/test-reporter](https://github.com/dorny/test-reporter) and [github/codeql-action](https://github.com/github/codeql-action). Updates `docker/setup-buildx-action` from 3.2.0 to 3.3.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](2b51285047...d70bba72b1) Updates `dorny/test-reporter` from 1.8.0 to 1.9.0 - [Release notes](https://github.com/dorny/test-reporter/releases) - [Changelog](https://github.com/dorny/test-reporter/blob/main/CHANGELOG.md) - [Commits](eaa763f6ff...c40d89d5e9) Updates `github/codeql-action` from 3.24.9 to 3.24.10 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](1b1aada464...4355270be1) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
92 lines
3.2 KiB
YAML
92 lines
3.2 KiB
YAML
# This workflow uses actions that are not certified by GitHub.
|
|
# They are provided by a third-party and are governed by
|
|
# separate terms of service, privacy policy, and support
|
|
# documentation.
|
|
|
|
name: Vulnerability Scan
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
release:
|
|
schedule:
|
|
- cron: '00 9 * * 1'
|
|
|
|
permissions:
|
|
contents: read
|
|
security-events: write
|
|
|
|
jobs:
|
|
version:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
versions: ${{ steps.version.outputs.TAGS }}
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Latest Tag
|
|
id: version
|
|
shell: bash
|
|
run: |
|
|
readarray -t TAGS_ARRAY <<<"$(git tag --list 'controller-v*.*.*' --sort=-version:refname | grep -v 'beta\|alpha')"
|
|
FULL_TAGS=(${TAGS_ARRAY[0]} ${TAGS_ARRAY[1]} ${TAGS_ARRAY[2]})
|
|
SHORT_TAGS=()
|
|
for i in ${FULL_TAGS[@]}
|
|
do
|
|
echo "tag: $i"
|
|
short=$(echo "$i" | cut -d - -f 2)
|
|
SHORT_TAGS+=($short)
|
|
done
|
|
echo "${SHORT_TAGS[0]},${SHORT_TAGS[1]},${SHORT_TAGS[2]}"
|
|
TAGS_JSON="[\"${SHORT_TAGS[0]}\",\"${SHORT_TAGS[1]}\",\"${SHORT_TAGS[2]}\"]"
|
|
echo "${TAGS_JSON}"
|
|
echo "TAGS=${TAGS_JSON}" >> $GITHUB_OUTPUT
|
|
|
|
scan:
|
|
runs-on: ubuntu-latest
|
|
needs: version
|
|
strategy:
|
|
matrix:
|
|
versions: ${{ fromJSON(needs.version.outputs.versions) }}
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
|
|
|
|
- shell: bash
|
|
id: test
|
|
run: echo "Scanning registry.k8s.io/ingress-nginx/controller@${{ matrix.versions }}"
|
|
|
|
- name: Scan image with AquaSec/Trivy
|
|
id: scan
|
|
uses: aquasecurity/trivy-action@d710430a6722f083d3b36b8339ff66b32f22ee55 # v0.19.0
|
|
with:
|
|
image-ref: registry.k8s.io/ingress-nginx/controller:${{ matrix.versions }}
|
|
format: 'sarif'
|
|
output: trivy-results-${{ matrix.versions }}.sarif
|
|
exit-code: 0
|
|
vuln-type: 'os,library'
|
|
severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN'
|
|
|
|
- name: Output Sarif File
|
|
shell: bash
|
|
run: cat ${{ github.workspace }}/trivy-results-${{ matrix.versions }}.sarif
|
|
|
|
# This step checks out a copy of your repository.
|
|
- name: Upload SARIF file
|
|
uses: github/codeql-action/upload-sarif@4355270be187e1b672a7a1c7c7bae5afdc1ab94a # v3.24.10
|
|
with:
|
|
token: ${{ github.token }}
|
|
# Path to SARIF file relative to the root of the repository
|
|
sarif_file: ${{ github.workspace }}/trivy-results-${{ matrix.versions }}.sarif
|
|
|
|
- name: Vulz Count
|
|
shell: bash
|
|
run: |
|
|
TRIVY_COUNT=$(cat ${{ github.workspace }}/trivy-results-${{ matrix.versions }}.sarif | jq '.runs[0].results | length')
|
|
echo "TRIVY_COUNT: $TRIVY_COUNT"
|
|
echo "Image Vulnerability scan output" >> $GITHUB_STEP_SUMMARY
|
|
echo "Image ID: registry.k8s.io/ingress-nginx/controller@${{ matrix.versions }}" >> $GITHUB_STEP_SUMMARY
|
|
echo "" >> $GITHUB_STEP_SUMMARY
|
|
echo "Trivy Count: $TRIVY_COUNT" >> $GITHUB_STEP_SUMMARY
|