From 016889effb1a77b1a313b48d7ab8f67313e232b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 09:39:30 +0000 Subject: [PATCH] Bump the actions group across 1 directory with 6 updates Bumps the actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action) | `6` | `7` | | [actions/github-script](https://github.com/actions/github-script) | `8` | `9` | | [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action) | `2.1.1` | `3.0.2` | Updates `actions/checkout` from 5 to 6 - [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...v6) Updates `actions/cache` from 4 to 5 - [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...v5) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `SonarSource/sonarqube-scan-action` from 6 to 7 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](https://github.com/sonarsource/sonarqube-scan-action/compare/v6...v7) Updates `actions/github-script` from 8 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v8...v9) Updates `slackapi/slack-github-action` from 2.1.1 to 3.0.2 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Changelog](https://github.com/slackapi/slack-github-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/slackapi/slack-github-action/compare/v2.1.1...v3.0.2) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: slackapi/slack-github-action dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: SonarSource/sonarqube-scan-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/check-pull-request.yml | 28 ++++++++++++------------ .github/workflows/pr-notifier.yml | 4 ++-- .github/workflows/publish-hotfix.yml | 2 +- .github/workflows/publish.yml | 2 +- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/check-pull-request.yml b/.github/workflows/check-pull-request.yml index ca328ca..5f1fcd4 100644 --- a/.github/workflows/check-pull-request.yml +++ b/.github/workflows/check-pull-request.yml @@ -20,10 +20,10 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 id: npm-install-cache with: enableCrossOsArchive: true @@ -31,7 +31,7 @@ jobs: path: node_modules - name: Cache build - uses: actions/cache@v4 + uses: actions/cache@v5 with: enableCrossOsArchive: true key: npm-build-${{ runner.os }}-${{ github.sha }} @@ -85,10 +85,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Restore dependencies - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: enableCrossOsArchive: true fail-on-cache-miss: true @@ -97,7 +97,7 @@ jobs: - name: Cache task if: ${{ matrix.task.cache }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: enableCrossOsArchive: true key: ${{ matrix.task.name }}-${{ runner.os }} @@ -128,10 +128,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Restore dependencies - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: enableCrossOsArchive: true fail-on-cache-miss: true @@ -139,7 +139,7 @@ jobs: path: node_modules - name: Restore build - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: enableCrossOsArchive: true fail-on-cache-miss: true @@ -153,7 +153,7 @@ jobs: - name: Cache task if: ${{ matrix.task.cache }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: enableCrossOsArchive: true key: ${{ matrix.task.name }}-${{ runner.os }}-${{ github.sha }} @@ -164,7 +164,7 @@ jobs: - name: Save test coverage if: ${{ always() }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.task.description }} coverage path: coverage @@ -178,12 +178,12 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Restore unit test coverage - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: enableCrossOsArchive: true fail-on-cache-miss: true @@ -191,7 +191,7 @@ jobs: path: coverage - name: SonarCloud Scan - uses: SonarSource/sonarqube-scan-action@v6 + uses: SonarSource/sonarqube-scan-action@v7 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/.github/workflows/pr-notifier.yml b/.github/workflows/pr-notifier.yml index 76f6b8e..b5aba14 100644 --- a/.github/workflows/pr-notifier.yml +++ b/.github/workflows/pr-notifier.yml @@ -50,7 +50,7 @@ jobs: steps: - name: Build Slack JSON - uses: actions/github-script@v8 + uses: actions/github-script@v9 id: payload if: github.event.action != 'submitted' || github.event.review.state == 'approved' @@ -89,7 +89,7 @@ jobs: } - name: Post to Slack - uses: slackapi/slack-github-action@v2.1.1 + uses: slackapi/slack-github-action@v3.0.2 if: github.event.action != 'submitted' || github.event.review.state == 'approved' with: diff --git a/.github/workflows/publish-hotfix.yml b/.github/workflows/publish-hotfix.yml index 87004ee..5065405 100644 --- a/.github/workflows/publish-hotfix.yml +++ b/.github/workflows/publish-hotfix.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Depth 0 is required for branch-based versioning diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 870c3bc..00b4a3e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Build and Publish uses: DEFRA/cdp-build-action/build@main