Skip to content

Commit 8dd28af

Browse files
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.1` | 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](actions/checkout@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](actions/cache@v4...v5) 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 6 to 7 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](SonarSource/sonarqube-scan-action@v6...v7) Updates `actions/github-script` from 8 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v8...v9) Updates `slackapi/slack-github-action` from 2.1.1 to 3.0.1 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Commits](slackapi/slack-github-action@v2.1.1...v3.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '5' 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: SonarSource/sonarqube-scan-action dependency-version: '7' 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: slackapi/slack-github-action dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0e92dd2 commit 8dd28af

4 files changed

Lines changed: 18 additions & 18 deletions

File tree

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

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

2121
steps:
2222
- name: Check out code
23-
uses: actions/checkout@v5
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 }}
@@ -85,10 +85,10 @@ jobs:
8585

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

9090
- name: Restore dependencies
91-
uses: actions/cache/restore@v4
91+
uses: actions/cache/restore@v5
9292
with:
9393
enableCrossOsArchive: true
9494
fail-on-cache-miss: true
@@ -97,7 +97,7 @@ jobs:
9797

9898
- name: Cache task
9999
if: ${{ matrix.task.cache }}
100-
uses: actions/cache@v4
100+
uses: actions/cache@v5
101101
with:
102102
enableCrossOsArchive: true
103103
key: ${{ matrix.task.name }}-${{ runner.os }}
@@ -128,18 +128,18 @@ jobs:
128128

129129
steps:
130130
- name: Checkout
131-
uses: actions/checkout@v5
131+
uses: actions/checkout@v6
132132

133133
- name: Restore dependencies
134-
uses: actions/cache/restore@v4
134+
uses: actions/cache/restore@v5
135135
with:
136136
enableCrossOsArchive: true
137137
fail-on-cache-miss: true
138138
key: npm-install-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
139139
path: node_modules
140140

141141
- name: Restore build
142-
uses: actions/cache/restore@v4
142+
uses: actions/cache/restore@v5
143143
with:
144144
enableCrossOsArchive: true
145145
fail-on-cache-miss: true
@@ -153,7 +153,7 @@ jobs:
153153

154154
- name: Cache task
155155
if: ${{ matrix.task.cache }}
156-
uses: actions/cache@v4
156+
uses: actions/cache@v5
157157
with:
158158
enableCrossOsArchive: true
159159
key: ${{ matrix.task.name }}-${{ runner.os }}-${{ github.sha }}
@@ -164,7 +164,7 @@ jobs:
164164

165165
- name: Save test coverage
166166
if: ${{ always() }}
167-
uses: actions/upload-artifact@v4
167+
uses: actions/upload-artifact@v7
168168
with:
169169
name: ${{ matrix.task.description }} coverage
170170
path: coverage
@@ -178,20 +178,20 @@ jobs:
178178

179179
steps:
180180
- name: Check out code
181-
uses: actions/checkout@v5
181+
uses: actions/checkout@v6
182182
with:
183183
fetch-depth: 0
184184

185185
- name: Restore unit test coverage
186-
uses: actions/cache/restore@v4
186+
uses: actions/cache/restore@v5
187187
with:
188188
enableCrossOsArchive: true
189189
fail-on-cache-miss: true
190190
key: test-unit-${{ runner.os }}-${{ github.sha }}
191191
path: coverage
192192

193193
- name: SonarCloud Scan
194-
uses: SonarSource/sonarqube-scan-action@v6
194+
uses: SonarSource/sonarqube-scan-action@v7
195195
env:
196196
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
197197
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

.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@v8
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.1.1
92+
uses: slackapi/slack-github-action@v3.0.1
9393
if: github.event.action != 'submitted' || github.event.review.state == 'approved'
9494

9595
with:

.github/workflows/publish-hotfix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Check out code
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
fetch-depth: 0 # Depth 0 is required for branch-based versioning
2424

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-24.04
3434
steps:
3535
- name: Check out code
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737

3838
- name: Build and Publish
3939
uses: DEFRA/cdp-build-action/build@main

0 commit comments

Comments
 (0)