Skip to content

Commit be9464a

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 52b21f8 commit be9464a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/api-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
8383
- name: Upload API Diff Report (net8.0)
8484
if: always()
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v5
8686
with:
8787
name: api-diff-net8.0
8888
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
@@ -111,7 +111,7 @@ jobs:
111111

112112
- name: Upload artifacts to publish
113113
continue-on-error: true
114-
uses: actions/upload-artifact@v4
114+
uses: actions/upload-artifact@v5
115115
with:
116116
name: ${{ matrix.host.TARGET }}
117117
if-no-files-found: error
@@ -162,7 +162,7 @@ jobs:
162162
SkipCargo: true
163163

164164
- name: Upload artifacts to publish
165-
uses: actions/upload-artifact@v4
165+
uses: actions/upload-artifact@v5
166166
with:
167167
name: package
168168
if-no-files-found: error
@@ -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-${{ matrix.host.TARGET }}
283283
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
- name: Upload test reports
111111
if: always()
112112
continue-on-error: true
113-
uses: actions/upload-artifact@v4
113+
uses: actions/upload-artifact@v5
114114
with:
115115
name: test-reports-dotnet-${{ matrix.dotnet }}-${{ matrix.server.type }}-${{ matrix.server.version }}-${{ matrix.host.OS }}-${{ matrix.host.ARCH }}
116116
path: |
@@ -187,7 +187,7 @@ jobs:
187187
- name: Upload test reports
188188
if: always()
189189
continue-on-error: true
190-
uses: actions/upload-artifact@v4
190+
uses: actions/upload-artifact@v5
191191
with:
192192
name: test-reports-dotnet-${{ matrix.dotnet }}-${{ matrix.server.type }}-${{ matrix.server.version }}-${{ env.IMAGE }}-${{ matrix.host.ARCH }}
193193
path: |

0 commit comments

Comments
 (0)