From 3639868dc36fd409485a82c1b50dd17bad7ef7d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 04:44:38 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 6 updates Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `7` | | [actions/setup-python](https://github.com/actions/setup-python) | `6` | `7` | | [actions/cache](https://github.com/actions/cache) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `5` | `7` | | [hashicorp/setup-terraform](https://github.com/hashicorp/setup-terraform) | `3` | `4` | | [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action) | `6` | `8` | Updates `actions/checkout` from 5 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/v5...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 4 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/v4...v6) Updates `actions/upload-artifact` from 5 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v7) Updates `hashicorp/setup-terraform` from 3 to 4 - [Release notes](https://github.com/hashicorp/setup-terraform/releases) - [Changelog](https://github.com/hashicorp/setup-terraform/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/setup-terraform/compare/v3...v4) Updates `SonarSource/sonarqube-scan-action` from 6 to 8 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](https://github.com/sonarsource/sonarqube-scan-action/compare/v6...v8) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - 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/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: hashicorp/setup-terraform dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: SonarSource/sonarqube-scan-action dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/branch-cicd.yaml | 6 +++--- .github/workflows/codeql-analysis.yml | 4 ++-- .github/workflows/secrets-detection.yaml | 2 +- .github/workflows/stable-cicd.yaml | 4 ++-- .github/workflows/terraform_cicd.yaml | 4 ++-- .github/workflows/unstable-cicd.yaml | 6 +++--- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/branch-cicd.yaml b/.github/workflows/branch-cicd.yaml index af3ac35..100cb11 100644 --- a/.github/workflows/branch-cicd.yaml +++ b/.github/workflows/branch-cicd.yaml @@ -33,19 +33,19 @@ jobs: steps: - name: 💳 Checkout - uses: actions/checkout@v5 + 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@v4 + 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 76c0c84..81bcc49 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL @@ -89,7 +89,7 @@ jobs: - name: Upload CodeQL Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: codeql-artifacts path: ${{ env.RESULTS_DIR }} diff --git a/.github/workflows/secrets-detection.yaml b/.github/workflows/secrets-detection.yaml index 9fb207d..42c1882 100644 --- a/.github/workflows/secrets-detection.yaml +++ b/.github/workflows/secrets-detection.yaml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Install necessary packages run: | diff --git a/.github/workflows/stable-cicd.yaml b/.github/workflows/stable-cicd.yaml index bc54880..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@v5 + uses: actions/checkout@v7 with: lfs: true token: ${{secrets.ADMIN_GITHUB_TOKEN}} fetch-depth: 0 - name: 💵 Python Cache - uses: actions/cache@v4 + 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 8511ac5..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@v5 + uses: actions/checkout@v7 # AWS Authentication. Please uncomment this step in your repo to authenticate to AWS. @@ -31,7 +31,7 @@ jobs: # role-session-name: PDS_GitHub_OIDC_TERRAFORM - name: Setup Terraform - uses: hashicorp/setup-terraform@v3 + uses: hashicorp/setup-terraform@v4 - name: Terraform Init id: init diff --git a/.github/workflows/unstable-cicd.yaml b/.github/workflows/unstable-cicd.yaml index 0c9353a..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@v5 + uses: actions/checkout@v7 with: lfs: true token: ${{secrets.ADMIN_GITHUB_TOKEN}} fetch-depth: 0 - name: 💵 Python Cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cache/pip # The "key" used to indicate a set of cached files is the operating system runner @@ -80,7 +80,7 @@ jobs: ADMIN_GITHUB_TOKEN: ${{secrets.ADMIN_GITHUB_TOKEN}} - name: 🛏️ Upload Coverage - uses: SonarSource/sonarqube-scan-action@v6 + uses: SonarSource/sonarqube-scan-action@v8 env: SONAR_TOKEN: ${{secrets.SONAR_TOKEN}}