From 2ce45419843f9715432b30641b24b8dfbb96fbe2 Mon Sep 17 00:00:00 2001 From: Guy Owen Date: Tue, 17 Sep 2024 13:33:12 +1000 Subject: [PATCH] Added 5.x workflow with previously unused name. --- .../vulnerability-scan-trivy-schedule-5x.yml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/vulnerability-scan-trivy-schedule-5x.yml diff --git a/.github/workflows/vulnerability-scan-trivy-schedule-5x.yml b/.github/workflows/vulnerability-scan-trivy-schedule-5x.yml new file mode 100644 index 00000000..e1a5c591 --- /dev/null +++ b/.github/workflows/vulnerability-scan-trivy-schedule-5x.yml @@ -0,0 +1,24 @@ +name: vulnerability-scan-trivy-schedule-5.x +run-name: Scheduled Trivy vulnerability scan of 5.x published images. +env: + REGISTRY: ghcr.io +on: + schedule: + - cron: '0 22 * * 3' + workflow_dispatch: + inputs: + summary: + description: 'Summary of the scheduled scan.' + required: false + default: 'Trivy CVE scan of 5.x published images.' + tag: + description: 'Tag to scan.' + required: false + default: '5.x' +jobs: + vulnerability-scan-schedule: + name: Scan for vulnerabilities on 5.x images + uses: "dpc-sdp/bay/.github/workflows/vulnerability-scan.yml@5.x" + with: + tag: "5.x" + summary: "Trivy CVE scan of 5.x published images."