From 4e488fba1dfc5e13c462d08180589fc3ea7f358d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 21:10:15 +0000 Subject: [PATCH] Bump github/codeql-action from 3 to 4 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3 to 4. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/checkov.yaml | 2 +- .github/workflows/grype.yaml | 2 +- .github/workflows/snyk.yaml | 2 +- .github/workflows/trivy.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/checkov.yaml b/.github/workflows/checkov.yaml index 707435d..4007567 100644 --- a/.github/workflows/checkov.yaml +++ b/.github/workflows/checkov.yaml @@ -30,7 +30,7 @@ jobs: checkov --framework=dockerfile -f ${{ inputs.dockerfile_path }} -o sarif - name: Upload SARIF file - uses: github/codeql-action/upload-sarif@v3 + uses: github/codeql-action/upload-sarif@v4 if: success() || failure() with: sarif_file: results.sarif diff --git a/.github/workflows/grype.yaml b/.github/workflows/grype.yaml index c7cd3b0..67436fb 100644 --- a/.github/workflows/grype.yaml +++ b/.github/workflows/grype.yaml @@ -45,7 +45,7 @@ jobs: run: cat ${{ steps.scan.outputs.sarif }} - name: Upload Grype scan results to GitHub Security tab - uses: github/codeql-action/upload-sarif@v3 + uses: github/codeql-action/upload-sarif@v4 if: success() || failure() with: sarif_file: ${{ steps.scan.outputs.sarif }} diff --git a/.github/workflows/snyk.yaml b/.github/workflows/snyk.yaml index 50e6677..1e6c863 100644 --- a/.github/workflows/snyk.yaml +++ b/.github/workflows/snyk.yaml @@ -45,7 +45,7 @@ jobs: # Push the Snyk Code results into GitHub Code Scanning tab - name: Upload result to GitHub Code Scanning - uses: github/codeql-action/upload-sarif@v3 + uses: github/codeql-action/upload-sarif@v4 if: success() || failure() with: sarif_file: snyk.sarif diff --git a/.github/workflows/trivy.yaml b/.github/workflows/trivy.yaml index 1039311..187c770 100644 --- a/.github/workflows/trivy.yaml +++ b/.github/workflows/trivy.yaml @@ -44,6 +44,6 @@ jobs: output: 'trivy-results.sarif' - name: Upload Trivy scan results to GitHub Security tab - uses: github/codeql-action/upload-sarif@v3 + uses: github/codeql-action/upload-sarif@v4 with: sarif_file: 'trivy-results.sarif'