From e572001b162ab131a229c03286e1e2227874b911 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2026 06:33:05 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 3 updates Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-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/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 `SonarSource/sonarqube-scan-action` from 7 to 8 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](https://github.com/sonarsource/sonarqube-scan-action/compare/v7...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: 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 | 4 ++-- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/stable-cicd.yaml | 4 ++-- .github/workflows/unstable-cicd.yaml | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/branch-cicd.yaml b/.github/workflows/branch-cicd.yaml index 50bc42d..f04241d 100644 --- a/.github/workflows/branch-cicd.yaml +++ b/.github/workflows/branch-cicd.yaml @@ -37,7 +37,7 @@ jobs: steps: - name: 💳 Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true fetch-depth: 0 @@ -49,7 +49,7 @@ jobs: python-version: ${{ matrix.python-version }} - 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 d910903..c39ddbc 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup python 3.13 uses: actions/setup-python@v6 diff --git a/.github/workflows/stable-cicd.yaml b/.github/workflows/stable-cicd.yaml index b8cd365..d4f0358 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/unstable-cicd.yaml b/.github/workflows/unstable-cicd.yaml index 9f324e3..9d8fe7d 100644 --- a/.github/workflows/unstable-cicd.yaml +++ b/.github/workflows/unstable-cicd.yaml @@ -51,14 +51,14 @@ jobs: steps: - name: 💳 Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true fetch-depth: 0 token: ${{secrets.ADMIN_GITHUB_TOKEN}} - 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 @@ -81,7 +81,7 @@ jobs: DATACITE_PASSWORD: ${{secrets.DATACITE_PASSWORD}} - name: 🛏️ Upload Coverage - uses: SonarSource/sonarqube-scan-action@v7 + uses: SonarSource/sonarqube-scan-action@v8 env: SONAR_TOKEN: ${{secrets.SONAR_TOKEN}}