From 446fd9bb72187ab391b6ce0183067504cb1a7eae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 19 Jul 2026 03:06:08 +0000 Subject: [PATCH] Bump the all group in /.github/workflows with 3 updates Bumps the all group in /.github/workflows with 3 updates: [actions/checkout](https://github.com/actions/checkout), [github/codeql-action](https://github.com/github/codeql-action) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v7) Updates `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) Updates `codecov/codecov-action` from 5 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v5...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 8 ++++---- .github/workflows/integration.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/support-images.yml | 2 +- .github/workflows/unit.yaml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 4f915e2..5962629 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -38,11 +38,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -56,7 +56,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v3 + uses: github/codeql-action/autobuild@v4 # â„šī¸ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun @@ -69,4 +69,4 @@ jobs: # ./location_of_script_within_repo/buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index abc8f34..b9941a1 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -11,7 +11,7 @@ jobs: name: Integrations steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Run integration tests run: make integration stop diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6747e6d..f1f44d1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: name: Build, Tag, Push steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Setup env run: | diff --git a/.github/workflows/support-images.yml b/.github/workflows/support-images.yml index 9310e0a..cde4b6e 100644 --- a/.github/workflows/support-images.yml +++ b/.github/workflows/support-images.yml @@ -11,7 +11,7 @@ jobs: name: Build Support Images steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Build good nginx image run: | diff --git a/.github/workflows/unit.yaml b/.github/workflows/unit.yaml index 80ed18d..76ba07f 100644 --- a/.github/workflows/unit.yaml +++ b/.github/workflows/unit.yaml @@ -8,12 +8,12 @@ jobs: name: Unit steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Run unit tests run: make unit_docker - - uses: codecov/codecov-action@v5 + - uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.out