Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/_check_clang_static_analyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:

- name: Upload scan result
if: ${{ failure() && inputs.is_rust == 'false'}}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: scan-build
path: scan-build
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:

- name: Upload scan result
if: ${{ failure() && inputs.is_rust == 'false'}}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: scan-build
path: scan-build
4 changes: 2 additions & 2 deletions .github/workflows/_get_app_manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
-m "../manifest_${{ matrix.device }}.json"

- name: Upload app manifest
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ inputs.upload_manifest_artifact_name }}-${{ matrix.device }}
path: ./manifest_*.json
Expand All @@ -94,7 +94,7 @@ jobs:
needs: get_app_manifest
runs-on: ubuntu-22.04
steps:
- uses: actions/upload-artifact/merge@v4
- uses: actions/upload-artifact/merge@v7
with:
name: ${{ inputs.upload_manifest_artifact_name }}
pattern: ${{ inputs.upload_manifest_artifact_name }}-*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
needs: build_sideloaded_applications_for_exchange
runs-on: ubuntu-22.04
steps:
- uses: actions/upload-artifact/merge@v4
- uses: actions/upload-artifact/merge@v7
with:
name: libraries_binaries
pattern: libraries_binaries-*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ jobs:

- name: Upload app binary
if: ${{ inputs.upload_app_binaries_artifact != '' }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ inputs.upload_app_binaries_artifact }}-${{ matrix.device }}
path: ${{ steps.build.outputs.binary_path }}
Expand All @@ -210,7 +210,7 @@ jobs:
runs-on: ubuntu-22.04
if: ${{ inputs.upload_app_binaries_artifact != '' }}
steps:
- uses: actions/upload-artifact/merge@v4
- uses: actions/upload-artifact/merge@v7
with:
name: ${{ inputs.upload_app_binaries_artifact }}
pattern: ${{ inputs.upload_app_binaries_artifact }}-*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_doc_generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: HTML documentation
run: doxygen "${DOXY_FILE}"

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: documentation
path: doc/html
2 changes: 1 addition & 1 deletion .github/workflows/reusable_docker_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ jobs:

- name: Upload artifact
if: ${{ env.OUTPUTS != '' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ env.IMAGE_NAME }}
path: /tmp/${{ env.IMAGE_NAME }}.tar
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable_ragger_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ jobs:

- name: Upload pytest logs
if: ${{ inputs.capture_file != '' }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: pytest-logs-${{ matrix.device }}
path: pytest_output.log
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:

- name: Upload snapshots if needed
if: ${{ steps.upload-flag.outputs.artifact_uploaded == 'true' }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
# Make the artifact name unique to allow running this job in parallel
# Append a ~ at the end to prevent one job's pattern from prefixing another one
Expand Down Expand Up @@ -329,7 +329,7 @@ jobs:
find logs -name "pytest_output.log" -exec cat {} \; > "${CAPTURE_FILE}.log"

- name: Upload combined logs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: "${{ inputs.capture_file }}"
path: "${{ inputs.capture_file }}.log"
Expand All @@ -340,7 +340,7 @@ jobs:
needs: ragger_tests
runs-on: ubuntu-22.04
steps:
- uses: actions/upload-artifact/merge@v4
- uses: actions/upload-artifact/merge@v7
if: ${{ needs.ragger_tests.outputs.snapshot_artifact_uploaded == 'true' }}
with:
# Merge all basename-$device.zip into a single basename.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
lcov --directory . -b "$(realpath build/)" --remove coverage.info "*/${TEST_DIRECTORY}/*" -o coverage.info
genhtml coverage.info -o coverage

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: code-coverage
path: ${{ inputs.test_directory }}/coverage
Expand Down