Skip to content

Commit b3b12b0

Browse files
Bump actions/upload-artifact from 4 to 5 in /.github/workflows
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 51ede87 commit b3b12b0

8 files changed

+14
-14
lines changed

.github/workflows/_check_clang_static_analyzer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
8484
- name: Upload scan result
8585
if: ${{ failure() && inputs.is_rust == 'false'}}
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v5
8787
with:
8888
name: scan-build
8989
path: scan-build

.github/workflows/_check_clang_static_analyzer_latest_sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
8080
- name: Upload scan result
8181
if: ${{ failure() && inputs.is_rust == 'false'}}
82-
uses: actions/upload-artifact@v4
82+
uses: actions/upload-artifact@v5
8383
with:
8484
name: scan-build
8585
path: scan-build

.github/workflows/_get_app_manifest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
-m "../manifest_${{ matrix.device }}.json"
8484
8585
- name: Upload app manifest
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v5
8787
with:
8888
name: ${{ inputs.upload_manifest_artifact_name }}-${{ matrix.device }}
8989
path: ./manifest_*.json
@@ -94,7 +94,7 @@ jobs:
9494
needs: get_app_manifest
9595
runs-on: ubuntu-22.04
9696
steps:
97-
- uses: actions/upload-artifact/merge@v4
97+
- uses: actions/upload-artifact/merge@v5
9898
with:
9999
name: ${{ inputs.upload_manifest_artifact_name }}
100100
pattern: ${{ inputs.upload_manifest_artifact_name }}-*

.github/workflows/end_to_end_tests_of_reusable_workflows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
needs: build_sideloaded_applications_for_exchange
121121
runs-on: ubuntu-22.04
122122
steps:
123-
- uses: actions/upload-artifact/merge@v4
123+
- uses: actions/upload-artifact/merge@v5
124124
with:
125125
name: libraries_binaries
126126
pattern: libraries_binaries-*

.github/workflows/reusable_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ jobs:
201201
202202
- name: Upload app binary
203203
if: ${{ inputs.upload_app_binaries_artifact != '' }}
204-
uses: actions/upload-artifact@v4
204+
uses: actions/upload-artifact@v5
205205
with:
206206
name: ${{ inputs.upload_app_binaries_artifact }}-${{ matrix.device }}
207207
path: ${{ steps.build.outputs.binary_path }}
@@ -213,7 +213,7 @@ jobs:
213213
runs-on: ubuntu-22.04
214214
if: ${{ inputs.upload_app_binaries_artifact != '' }}
215215
steps:
216-
- uses: actions/upload-artifact/merge@v4
216+
- uses: actions/upload-artifact/merge@v5
217217
with:
218218
name: ${{ inputs.upload_app_binaries_artifact }}
219219
pattern: ${{ inputs.upload_app_binaries_artifact }}-*

.github/workflows/reusable_doc_generation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: HTML documentation
4646
run: doxygen "${DOXY_FILE}"
4747

48-
- uses: actions/upload-artifact@v4
48+
- uses: actions/upload-artifact@v5
4949
with:
5050
name: documentation
5151
path: doc/html

.github/workflows/reusable_ragger_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ jobs:
254254
255255
- name: Upload pytest logs
256256
if: ${{ inputs.capture_file != '' }}
257-
uses: actions/upload-artifact@v4
257+
uses: actions/upload-artifact@v5
258258
with:
259259
name: pytest-logs-${{ matrix.device }}
260260
path: pytest_output.log
@@ -291,7 +291,7 @@ jobs:
291291
292292
- name: Upload snapshots on failure if needed
293293
if: ${{ failure() && inputs.upload_snapshots_on_failure == true }}
294-
uses: actions/upload-artifact@v4
294+
uses: actions/upload-artifact@v5
295295
with:
296296
# Make the artifact name unique to allow running this job in parallel
297297
# Append a ~ at the end to prevent one job's pattern from prefixing another one
@@ -300,7 +300,7 @@ jobs:
300300

301301
- name: Upload snapshots on success if needed
302302
if: ${{ inputs.regenerate_snapshots == true }}
303-
uses: actions/upload-artifact@v4
303+
uses: actions/upload-artifact@v5
304304
with:
305305
# Make the artifact name unique to allow running this job in parallel
306306
# Append a ~ at the end to prevent one job's pattern from prefixing another one
@@ -335,7 +335,7 @@ jobs:
335335
find logs -name "pytest_output.log" -exec cat {} \; > "${CAPTURE_FILE}.log"
336336
337337
- name: Upload combined logs
338-
uses: actions/upload-artifact@v4
338+
uses: actions/upload-artifact@v5
339339
with:
340340
name: "${{ inputs.capture_file }}"
341341
path: "${{ inputs.capture_file }}.log"
@@ -346,7 +346,7 @@ jobs:
346346
needs: ragger_tests
347347
runs-on: ubuntu-22.04
348348
steps:
349-
- uses: actions/upload-artifact/merge@v4
349+
- uses: actions/upload-artifact/merge@v5
350350
if: ${{ needs.ragger_tests.outputs.snapshot_artifact_uploaded == 'true' }}
351351
with:
352352
# Merge all basename-$device.zip into a single basename.zip

.github/workflows/reusable_unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
lcov --directory . -b "$(realpath build/)" --remove coverage.info "*/${TEST_DIRECTORY}/*" -o coverage.info
8888
genhtml coverage.info -o coverage
8989
90-
- uses: actions/upload-artifact@v4
90+
- uses: actions/upload-artifact@v5
9191
with:
9292
name: code-coverage
9393
path: ${{ inputs.test_directory }}/coverage

0 commit comments

Comments
 (0)