Skip to content

Commit f3c0649

Browse files
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` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [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 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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](actions/cache@v4...v5) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `SonarSource/sonarqube-scan-action` from 5 to 8 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](SonarSource/sonarqube-scan-action@v5...v8) Updates `actions/github-script` from 7 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@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](slackapi/slack-github-action@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] <support@github.com>
1 parent 636233f commit f3c0649

4 files changed

Lines changed: 25 additions & 25 deletions

File tree

.github/workflows/check-pull-request.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,25 @@ jobs:
2020

2121
steps:
2222
- name: Check out code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424

2525
- name: Cache dependencies
26-
uses: actions/cache@v4
26+
uses: actions/cache@v5
2727
id: npm-install-cache
2828
with:
2929
enableCrossOsArchive: true
3030
key: npm-install-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
3131
path: node_modules
3232

3333
- name: Cache build
34-
uses: actions/cache@v4
34+
uses: actions/cache@v5
3535
with:
3636
enableCrossOsArchive: true
3737
key: npm-build-${{ runner.os }}-${{ github.sha }}
3838
path: .server
3939

4040
- name: Setup Node.js
41-
uses: actions/setup-node@v4
41+
uses: actions/setup-node@v6
4242
with:
4343
node-version-file: .nvmrc
4444

@@ -85,10 +85,10 @@ jobs:
8585

8686
steps:
8787
- name: Checkout
88-
uses: actions/checkout@v4
88+
uses: actions/checkout@v6
8989

9090
- name: Restore dependencies
91-
uses: actions/cache/restore@v4
91+
uses: actions/cache/restore@v5
9292
id: restore-deps
9393
with:
9494
enableCrossOsArchive: true
@@ -99,14 +99,14 @@ jobs:
9999
100100
- name: Cache task
101101
if: ${{ matrix.task.cache }}
102-
uses: actions/cache@v4
102+
uses: actions/cache@v5
103103
with:
104104
enableCrossOsArchive: true
105105
key: ${{ matrix.task.name }}-${{ runner.os }}-${{ github.sha }}
106106
path: ${{ matrix.task.cache }}
107107

108108
- name: Setup Node.js
109-
uses: actions/setup-node@v4
109+
uses: actions/setup-node@v6
110110
with:
111111
node-version-file: .nvmrc
112112

@@ -134,10 +134,10 @@ jobs:
134134

135135
steps:
136136
- name: Checkout
137-
uses: actions/checkout@v4
137+
uses: actions/checkout@v6
138138

139139
- name: Restore dependencies
140-
uses: actions/cache/restore@v4
140+
uses: actions/cache/restore@v5
141141
id: restore-deps-tasks
142142
with:
143143
enableCrossOsArchive: true
@@ -147,7 +147,7 @@ jobs:
147147
npm-install-${{ runner.os }}-
148148
149149
- name: Restore build
150-
uses: actions/cache/restore@v4
150+
uses: actions/cache/restore@v5
151151
id: restore-build
152152
with:
153153
enableCrossOsArchive: true
@@ -157,7 +157,7 @@ jobs:
157157
npm-build-${{ runner.os }}-
158158
159159
- name: Setup Node.js
160-
uses: actions/setup-node@v4
160+
uses: actions/setup-node@v6
161161
with:
162162
node-version-file: .nvmrc
163163

@@ -171,7 +171,7 @@ jobs:
171171

172172
- name: Cache task
173173
if: ${{ matrix.task.cache }}
174-
uses: actions/cache@v4
174+
uses: actions/cache@v5
175175
with:
176176
enableCrossOsArchive: true
177177
key: ${{ matrix.task.name }}-${{ runner.os }}-${{ github.sha }}
@@ -182,7 +182,7 @@ jobs:
182182

183183
- name: Save test coverage
184184
if: ${{ always() }}
185-
uses: actions/upload-artifact@v4
185+
uses: actions/upload-artifact@v7
186186
with:
187187
name: ${{ matrix.task.description }}
188188
path: coverage
@@ -196,12 +196,12 @@ jobs:
196196

197197
steps:
198198
- name: Check out code
199-
uses: actions/checkout@v4
199+
uses: actions/checkout@v6
200200
with:
201201
fetch-depth: 0
202202

203203
- name: Restore unit test coverage
204-
uses: actions/cache/restore@v4
204+
uses: actions/cache/restore@v5
205205
with:
206206
enableCrossOsArchive: true
207207
key: test-unit-${{ runner.os }}-${{ github.sha }}
@@ -210,7 +210,7 @@ jobs:
210210
test-unit-${{ runner.os }}-
211211
212212
- name: SonarCloud Scan
213-
uses: SonarSource/sonarqube-scan-action@v5
213+
uses: SonarSource/sonarqube-scan-action@v8
214214
env:
215215
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
216216
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

.github/workflows/integration-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ jobs:
1212

1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616

1717
- name: Cache node modules
18-
uses: actions/cache@v4
18+
uses: actions/cache@v5
1919
with:
2020
path: ~/.npm
2121
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
2222
restore-keys: |
2323
${{ runner.os }}-node-
2424
2525
- name: Cache Docker images
26-
uses: actions/cache@v4
26+
uses: actions/cache@v5
2727
with:
2828
path: /tmp/docker-save
2929
key: ${{ runner.os }}-docker-${{ hashFiles('docker-compose.integration-test.yml') }}
@@ -43,7 +43,7 @@ jobs:
4343
echo "No cached Docker images found"
4444
fi
4545
- name: Set up Node.js
46-
uses: actions/setup-node@v4
46+
uses: actions/setup-node@v6
4747
with:
4848
node-version: '22'
4949
cache: 'npm'
@@ -83,7 +83,7 @@ jobs:
8383
done
8484
8585
- name: Upload Test Report
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v7
8787
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && success()
8888
with:
8989
name: integration-test-report

.github/workflows/pr-notifier.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
steps:
5252
- name: Build Slack JSON
53-
uses: actions/github-script@v7
53+
uses: actions/github-script@v9
5454
id: payload
5555
if: github.event.action != 'submitted' || github.event.review.state == 'approved'
5656

@@ -89,7 +89,7 @@ jobs:
8989
}
9090
9191
- name: Post to Slack
92-
uses: slackapi/slack-github-action@v2.0.0
92+
uses: slackapi/slack-github-action@v3.0.3
9393
if: github.event.action != 'submitted' || github.event.review.state == 'approved'
9494

9595
env:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-24.04
3737
steps:
3838
- name: Check out code
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v6
4040

4141
- name: Build and Publish
4242
uses: DEFRA/cdp-build-action/build@main

0 commit comments

Comments
 (0)