Skip to content

Commit 70761b6

Browse files
Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a56457a commit 70761b6

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/api-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
8686
- name: Upload API Diff Report (net8.0)
8787
if: always()
88-
uses: actions/upload-artifact@v4
88+
uses: actions/upload-artifact@v5
8989
with:
9090
name: api-diff-net8.0
9191
path: api-diff/api-changes-net8.0.html

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113

114114
- name: Upload artifacts to publish
115115
continue-on-error: true
116-
uses: actions/upload-artifact@v4
116+
uses: actions/upload-artifact@v5
117117
with:
118118
name: ${{ matrix.host.TARGET }}
119119
if-no-files-found: error
@@ -164,7 +164,7 @@ jobs:
164164
SkipCargo: true
165165

166166
- name: Upload artifacts to publish
167-
uses: actions/upload-artifact@v4
167+
uses: actions/upload-artifact@v5
168168
with:
169169
name: package
170170
if-no-files-found: error
@@ -279,7 +279,7 @@ jobs:
279279
- name: Upload test reports
280280
if: always()
281281
continue-on-error: true
282-
uses: actions/upload-artifact@v4
282+
uses: actions/upload-artifact@v5
283283
with:
284284
name: test-reports-${{ matrix.host.TARGET }}
285285
path: |

.github/workflows/ort.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
- name: Upload ORT results
138138
if: always()
139139
continue-on-error: true
140-
uses: actions/upload-artifact@v4
140+
uses: actions/upload-artifact@v5
141141
with:
142142
name: ort_results
143143
path: |
@@ -162,7 +162,7 @@ jobs:
162162
163163
- name: Upload the final package list
164164
continue-on-error: true
165-
uses: actions/upload-artifact@v4
165+
uses: actions/upload-artifact@v5
166166
with:
167167
name: final-package-list-${{ steps.date.outputs.date }}
168168
path: |
@@ -171,7 +171,7 @@ jobs:
171171

172172
- name: Upload the skipped package list
173173
continue-on-error: true
174-
uses: actions/upload-artifact@v4
174+
uses: actions/upload-artifact@v5
175175
with:
176176
name: skipped-package-list-${{ steps.date.outputs.date }}
177177
path: |
@@ -180,7 +180,7 @@ jobs:
180180

181181
- name: Upload the unknown/unapproved package list
182182
continue-on-error: true
183-
uses: actions/upload-artifact@v4
183+
uses: actions/upload-artifact@v5
184184
with:
185185
name: unapproved-package-list-${{ steps.date.outputs.date }}
186186
path: |

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
core.info(`inputs.json => ${JSON.stringify(out)}`);
6767
6868
- name: Upload inputs.json
69-
uses: actions/upload-artifact@v4
69+
uses: actions/upload-artifact@v5
7070
with:
7171
name: inputs.json
7272
path: .run-meta/inputs.json
@@ -170,7 +170,7 @@ jobs:
170170
- name: Upload test reports
171171
if: always()
172172
continue-on-error: true
173-
uses: actions/upload-artifact@v4
173+
uses: actions/upload-artifact@v5
174174
with:
175175
name: test-reports-dotnet-${{ matrix.dotnet }}-${{ matrix.server.type }}-${{ matrix.server.version }}-${{ matrix.host.OS }}-${{ matrix.host.ARCH }}
176176
path: |
@@ -277,7 +277,7 @@ jobs:
277277
- name: Upload test reports
278278
if: always()
279279
continue-on-error: true
280-
uses: actions/upload-artifact@v4
280+
uses: actions/upload-artifact@v5
281281
with:
282282
name: test-reports-dotnet-${{ matrix.dotnet }}-${{ matrix.server.type }}-${{ matrix.server.version }}-${{ matrix.host.IMAGE }}-${{ matrix.host.ARCH }}
283283
path: |

0 commit comments

Comments
 (0)