Skip to content

Commit c658f6d

Browse files
Bump actions/upload-artifact from 4.6.2 to 5.0.0
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.2 to 5.0.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.6.2...v5.0.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent d3f4488 commit c658f6d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/diff-change-to-dist.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
bin/dist-diff.sh origin/${{ github.event.pull_request.base.ref }} $GITHUB_WORKSPACE
4040
4141
- name: Save GitHub release diffs
42-
uses: actions/upload-artifact@v4.6.2
42+
uses: actions/upload-artifact@v5.0.0
4343
with:
4444
name: GitHub release diffs
4545
path: .cache/diff/dist/*.diff

.github/workflows/diff-change-to-package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
bin/package-diff.sh ${{ github.event.pull_request.base.ref }} $GITHUB_WORKSPACE
3838
3939
- name: Save npm package diffs
40-
uses: actions/upload-artifact@v4.6.2
40+
uses: actions/upload-artifact@v5.0.0
4141
with:
4242
name: Package diff
4343
path: .cache/diff/package/*.diff

.github/workflows/sass.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
! grep "\$govuk-" .tmp/index.css
5050
5151
- name: Save compiled Sass
52-
uses: actions/upload-artifact@v4.6.2
52+
uses: actions/upload-artifact@v5.0.0
5353
if: ${{ !cancelled() }}
5454
with:
5555
name: Dart Sass v1.0.0 output
@@ -92,7 +92,7 @@ jobs:
9292
! grep "\$govuk-" .tmp/index.css
9393
9494
- name: Save compiled Sass
95-
uses: actions/upload-artifact@v4.6.2
95+
uses: actions/upload-artifact@v5.0.0
9696
if: ${{ !cancelled() }}
9797
with:
9898
name: Dart Sass v1 (latest) output

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
run: npx jest --color ${{ format('--coverage={0} --maxWorkers=2 --selectProjects "{1}"', matrix.task.coverage || false, join(matrix.task.projects, '", "')) }}
206206

207207
- name: Save test coverage
208-
uses: actions/upload-artifact@v4.6.2
208+
uses: actions/upload-artifact@v5.0.0
209209
with:
210210
name: ${{ matrix.task.description }} coverage (${{ matrix.runner }})
211211
path: coverage

0 commit comments

Comments
 (0)