From 5017eb62a7969341d553cef0f259e205c338c4a0 Mon Sep 17 00:00:00 2001 From: ORybak5 <12736698+ORybak5@users.noreply.github.com> Date: Wed, 27 May 2026 15:27:26 +0100 Subject: [PATCH 1/2] Update cron schedule for container scan Changed the cron schedule for the container scan workflow. --- .github/workflows/container-scan.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/container-scan.yml b/.github/workflows/container-scan.yml index fdd26124b..1b367814b 100644 --- a/.github/workflows/container-scan.yml +++ b/.github/workflows/container-scan.yml @@ -6,7 +6,7 @@ on: paths: - 'docker/**' schedule: - - cron: '*/15 * * * *' + - cron: '0 4 * * 1' jobs: trivy-scan: name: Trivy Vulnerability Scan From a1563f9113d7ce415497b74e63975d615e40ba6c Mon Sep 17 00:00:00 2001 From: ORybak5 <12736698+ORybak5@users.noreply.github.com> Date: Wed, 27 May 2026 16:29:41 +0100 Subject: [PATCH 2/2] Delete .github/workflows/container-scan.yml --- .github/workflows/container-scan.yml | 31 ---------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/container-scan.yml diff --git a/.github/workflows/container-scan.yml b/.github/workflows/container-scan.yml deleted file mode 100644 index 1b367814b..000000000 --- a/.github/workflows/container-scan.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Container Security Scan -on: - push: - branches: - - main - paths: - - 'docker/**' - schedule: - - cron: '0 4 * * 1' -jobs: - trivy-scan: - name: Trivy Vulnerability Scan - runs-on: ubuntu-latest - permissions: - contents: read - security-events: write - steps: - - name: Checkout - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 - - name: Run Trivy Filesystem Scan - uses: aquasecurity/trivy-action@master - with: - scan-type: fs - scan-ref: . - format: sarif - output: trivy-results.sarif - severity: CRITICAL,HIGH - - name: Upload Results - uses: github/codeql-action/upload-sarif@v2 - with: - sarif_file: trivy-results.sarif