From 94c91599ed52acd674f3cf1e3028e3c846ebd174 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 09:33:15 +0000 Subject: [PATCH] chore(deps): bump the actions group across 1 directory with 7 updates Bumps the actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [actions/cache](https://github.com/actions/cache) | `4` | `6` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action) | `5` | `8` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `9` | | [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action) | `2.0.0` | `3.0.3` | 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 `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/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) 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 5 to 8 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](https://github.com/sonarsource/sonarqube-scan-action/compare/v5...v8) Updates `actions/github-script` from 7 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v9) Updates `slackapi/slack-github-action` from 2.0.0 to 3.0.3 - [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.0.0...v3.0.3) --- 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: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '6' 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 | 34 ++++++++++++------------ .github/workflows/integration-tests.yml | 10 +++---- .github/workflows/pr-notifier.yml | 4 +-- .github/workflows/publish-hotfix.yml | 6 ++--- .github/workflows/publish.yml | 2 +- 5 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/check-pull-request.yml b/.github/workflows/check-pull-request.yml index 8570c888..38e4ea75 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@v4 + uses: actions/checkout@v7 - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v6 id: npm-install-cache with: enableCrossOsArchive: true @@ -31,14 +31,14 @@ jobs: path: node_modules - name: Cache build - uses: actions/cache@v4 + uses: actions/cache@v6 with: enableCrossOsArchive: true key: npm-build-${{ runner.os }}-${{ github.sha }} path: .server - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version-file: .nvmrc @@ -85,10 +85,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Restore dependencies - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 id: restore-deps with: enableCrossOsArchive: true @@ -99,14 +99,14 @@ jobs: - name: Cache task if: ${{ matrix.task.cache }} - uses: actions/cache@v4 + uses: actions/cache@v6 with: enableCrossOsArchive: true key: ${{ matrix.task.name }}-${{ runner.os }}-${{ github.sha }} path: ${{ matrix.task.cache }} - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version-file: .nvmrc @@ -134,10 +134,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Restore dependencies - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 id: restore-deps-tasks with: enableCrossOsArchive: true @@ -147,7 +147,7 @@ jobs: npm-install-${{ runner.os }}- - name: Restore build - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 id: restore-build with: enableCrossOsArchive: true @@ -157,7 +157,7 @@ jobs: npm-build-${{ runner.os }}- - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version-file: .nvmrc @@ -171,7 +171,7 @@ jobs: - name: Cache task if: ${{ matrix.task.cache }} - uses: actions/cache@v4 + uses: actions/cache@v6 with: enableCrossOsArchive: true key: ${{ matrix.task.name }}-${{ runner.os }}-${{ github.sha }} @@ -182,7 +182,7 @@ jobs: - name: Save test coverage if: ${{ always() }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.task.description }} path: coverage @@ -196,12 +196,12 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Restore unit test coverage - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 with: enableCrossOsArchive: true key: test-unit-${{ runner.os }}-${{ github.sha }} @@ -210,7 +210,7 @@ jobs: test-unit-${{ runner.os }}- - name: SonarCloud Scan - uses: SonarSource/sonarqube-scan-action@v5 + uses: SonarSource/sonarqube-scan-action@v8 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 42e28209..f8af7fe1 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -12,10 +12,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -23,7 +23,7 @@ jobs: ${{ runner.os }}-node- - name: Cache Docker images - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: /tmp/docker-save key: ${{ runner.os }}-docker-${{ hashFiles('docker-compose.integration-test.yml') }} @@ -43,7 +43,7 @@ jobs: echo "No cached Docker images found" fi - name: Set up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: '22' cache: 'npm' @@ -83,7 +83,7 @@ jobs: done - name: Upload Test Report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: github.event_name == 'push' && github.ref == 'refs/heads/main' && success() with: name: integration-test-report diff --git a/.github/workflows/pr-notifier.yml b/.github/workflows/pr-notifier.yml index 64a90fa9..24f81069 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@v7 + 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.0.0 + uses: slackapi/slack-github-action@v3.0.3 if: github.event.action != 'submitted' || github.event.review.state == 'approved' env: diff --git a/.github/workflows/publish-hotfix.yml b/.github/workflows/publish-hotfix.yml index 6f2ecf46..a90eb002 100644 --- a/.github/workflows/publish-hotfix.yml +++ b/.github/workflows/publish-hotfix.yml @@ -18,12 +18,12 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 # Depth 0 is required for branch-based versioning - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version-file: .nvmrc cache: npm @@ -42,7 +42,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} - name: SonarCloud Scan - uses: SonarSource/sonarqube-scan-action@v5 + uses: SonarSource/sonarqube-scan-action@v8 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 98b47d99..7d74a468 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Build and Publish uses: DEFRA/cdp-build-action/build@main