From 20af38b4892c2f264363223284b4df6a09256883 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2026 15:54:29 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python), [actions/cache](https://github.com/actions/cache) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 6 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/v6...v7) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) Updates `github/codeql-action` from 4 to 4.37.3 - [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/v4...v4.37.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 4.37.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/branch-cicd.yaml | 6 +++--- .github/workflows/codeql-analysis.yml | 8 ++++---- .github/workflows/secrets-detection.yaml | 2 +- .github/workflows/stable-cicd.yaml | 4 ++-- .github/workflows/terraform_cicd.yaml | 2 +- .github/workflows/unstable-cicd.yaml | 4 ++-- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/branch-cicd.yaml b/.github/workflows/branch-cicd.yaml index 1c425fa..bd89c67 100644 --- a/.github/workflows/branch-cicd.yaml +++ b/.github/workflows/branch-cicd.yaml @@ -33,19 +33,19 @@ jobs: steps: - name: đŸ’ŗ Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true fetch-depth: 0 token: ${{secrets.ADMIN_GITHUB_TOKEN || github.token}} - name: Set up Python 3 - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: '3.13' - name: đŸ’ĩ Python Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip # The "key" used to indicate a set of cached files is the operating system runner diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a1fafbf..18faff9 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,11 +38,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v4 + uses: github/codeql-action/init@v4.37.3 with: languages: ${{ matrix.language }} queries: security-and-quality, security-extended @@ -54,7 +54,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@v4 + uses: github/codeql-action/autobuild@v4.37.3 # â„šī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -68,7 +68,7 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v4 + uses: github/codeql-action/analyze@v4.37.3 - run: | pip install nasa-scrub diff --git a/.github/workflows/secrets-detection.yaml b/.github/workflows/secrets-detection.yaml index 25413f8..0c2d395 100644 --- a/.github/workflows/secrets-detection.yaml +++ b/.github/workflows/secrets-detection.yaml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install detect-secrets run: pip install detect-secrets~=1.5.0 diff --git a/.github/workflows/stable-cicd.yaml b/.github/workflows/stable-cicd.yaml index 2d8f498..0334f95 100644 --- a/.github/workflows/stable-cicd.yaml +++ b/.github/workflows/stable-cicd.yaml @@ -48,14 +48,14 @@ jobs: steps: - name: đŸ’ŗ Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true token: ${{secrets.ADMIN_GITHUB_TOKEN}} fetch-depth: 0 - name: đŸ’ĩ Python Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip # The "key" used to indicate a set of cached files is the operating system runner diff --git a/.github/workflows/terraform_cicd.yaml b/.github/workflows/terraform_cicd.yaml index bc3a056..e104ed3 100644 --- a/.github/workflows/terraform_cicd.yaml +++ b/.github/workflows/terraform_cicd.yaml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 # AWS Authentication. Please uncomment this step in your repo to authenticate to AWS. diff --git a/.github/workflows/unstable-cicd.yaml b/.github/workflows/unstable-cicd.yaml index 363be4a..570ea99 100644 --- a/.github/workflows/unstable-cicd.yaml +++ b/.github/workflows/unstable-cicd.yaml @@ -53,14 +53,14 @@ jobs: steps: - name: đŸ’ŗ Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true token: ${{secrets.ADMIN_GITHUB_TOKEN}} fetch-depth: 0 - name: đŸ’ĩ Python Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip # The "key" used to indicate a set of cached files is the operating system runner