Skip to content

Commit b88f25a

Browse files
Merge pull request #143 from dylan-mccarthy/dependabot/github_actions/actions/upload-artifact-5
chore(deps)(deps): bump actions/upload-artifact from 4 to 5
2 parents 0f6da75 + 6529502 commit b88f25a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ jobs:
4747

4848
- name: Upload test results
4949
if: always()
50-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@v5
5151
with:
5252
name: dotnet-test-results
5353
path: '**/TestResults/**/*.trx'
5454

5555
- name: Upload code coverage
5656
if: always()
57-
uses: actions/upload-artifact@v4
57+
uses: actions/upload-artifact@v5
5858
with:
5959
name: dotnet-code-coverage
6060
path: '**/TestResults/**/coverage.cobertura.xml'
@@ -77,7 +77,7 @@ jobs:
7777
format: spdx-json
7878

7979
- name: Upload SBOMs
80-
uses: actions/upload-artifact@v4
80+
uses: actions/upload-artifact@v5
8181
with:
8282
name: dotnet-sboms
8383
path: '*.spdx.json'
@@ -126,7 +126,7 @@ jobs:
126126
format: spdx-json
127127

128128
- name: Upload SBOM
129-
uses: actions/upload-artifact@v4
129+
uses: actions/upload-artifact@v5
130130
with:
131131
name: nextjs-sbom
132132
path: sbom-admin-ui.spdx.json
@@ -259,7 +259,7 @@ jobs:
259259
format: spdx-json
260260

261261
- name: Upload container SBOM
262-
uses: actions/upload-artifact@v4
262+
uses: actions/upload-artifact@v5
263263
with:
264264
name: sbom-${{ matrix.name }}-image
265265
path: sbom-${{ matrix.name }}-image.spdx.json

.github/workflows/code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
-reporttypes:'Html;Cobertura'
154154
155155
- name: Upload coverage report
156-
uses: actions/upload-artifact@v4
156+
uses: actions/upload-artifact@v5
157157
with:
158158
name: coverage-report
159159
path: ./coverage/report

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
format: spdx-json
115115

116116
- name: Upload SBOM to release
117-
uses: actions/upload-artifact@v4
117+
uses: actions/upload-artifact@v5
118118
with:
119119
name: sbom-${{ matrix.name }}-release
120120
path: sbom-${{ matrix.name }}-${{ steps.version.outputs.version }}.spdx.json

0 commit comments

Comments
 (0)