From af74015ee870711d7fc058f50a687f82d2764003 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 13:32:19 +0100 Subject: [PATCH] Bump actions/upload-artifact from 4.0.0 to 4.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.0.0 to 4.1.0.
Release notes

Sourced from actions/upload-artifact's releases.

v4.1.0

What's Changed

New Contributors

Full Changelog: https://github.com/actions/upload-artifact/compare/v4...v4.1.0

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/upload-artifact&package-manager=github_actions&previous-version=4.0.0&new-version=4.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/buildmgr.yml | 20 ++++++++++---------- .github/workflows/cpp-linter.yml | 2 +- .github/workflows/nightly.yml | 2 +- .github/workflows/packchk.yml | 14 +++++++------- .github/workflows/packgen.yml | 10 +++++----- .github/workflows/projmgr.yml | 16 ++++++++-------- .github/workflows/scorecard.yml | 2 +- .github/workflows/svdconv.yml | 14 +++++++------- .github/workflows/test_libs.yml | 4 ++-- 9 files changed, 42 insertions(+), 42 deletions(-) diff --git a/.github/workflows/buildmgr.yml b/.github/workflows/buildmgr.yml index 37a76a641..51fc66f46 100644 --- a/.github/workflows/buildmgr.yml +++ b/.github/workflows/buildmgr.yml @@ -76,7 +76,7 @@ jobs: arch: ${{ matrix.arch }} - name: Archive cbuildgen - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: cbuildgen-${{ matrix.target }}-${{ matrix.arch }} path: ./build/tools/buildmgr/cbuildgen/${{ matrix.target }}-${{ matrix.arch }}/Release/cbuildgen${{ matrix.binary_extension }} @@ -130,7 +130,7 @@ jobs: echo "retention_days=$(echo '${{ (!github.event.repository.private && (github.event_name == 'push' || github.event.schedule != '')) && '7' || '1' }}')" >> $GITHUB_OUTPUT - name: Upload documentation - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: documentation path: ./build/tools/buildmgr/docs/doxygen/output/ @@ -261,7 +261,7 @@ jobs: working-directory: tools/buildmgr/cbuildgen/installer - name: Archive cbuild_install.sh - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: cbuild_install path: tools/buildmgr/cbuildgen/installer/cbuild_install.sh @@ -269,7 +269,7 @@ jobs: if-no-files-found: error - name: Archive deb package - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: deb_package path: tools/buildmgr/cbuildgen/installer/cmsis-build*.deb @@ -400,7 +400,7 @@ jobs: - name: Archive unittest if: always() && (matrix.arch != 'arm64') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: unit_test_result-${{ matrix.target }}-${{ matrix.arch }} path: ./build/test_reports/cbuildunittests-*.xml @@ -437,7 +437,7 @@ jobs: - name: Archive Cbuild Integration Tests if: always() && ((matrix.arch == 'amd64') || (startsWith(matrix.runs_on, 'ubuntu'))) - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: integ_test_result-${{ matrix.target }}-${{ matrix.arch }} path: ./build/test_reports/cbuildintegtests-report-${{ matrix.target }}-${{ matrix.arch }}.xml @@ -514,7 +514,7 @@ jobs: - name: Archive unittest if: (github.event_name == 'push') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: unit_test_result-linux-amd64 path: ./build/test_reports/cbuildunittests-*.xml @@ -523,7 +523,7 @@ jobs: - name: Archive Cbuild Integration Tests if: (github.event_name == 'push') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: integ_test_result-linux-amd64 path: ./build/test_reports/cbuildintegtests-*.xml @@ -560,7 +560,7 @@ jobs: attempt_delay: 5000 - name: Archive coverage report - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: coverage-report path: | @@ -653,7 +653,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Event File - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: Event File path: ${{ github.event_path }} diff --git a/.github/workflows/cpp-linter.yml b/.github/workflows/cpp-linter.yml index 483b8790a..1f39c5148 100644 --- a/.github/workflows/cpp-linter.yml +++ b/.github/workflows/cpp-linter.yml @@ -62,7 +62,7 @@ jobs: - name: Archive Cppcheck results if: ${{ steps.errors.outputs.value == '1' }} - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: cppcheck-report path: ./${{ env.linter_report }} diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index e90595e74..bf8d979c1 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -46,7 +46,7 @@ jobs: working-directory: coverage/ - name: Archive merged coverage report - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: merged-coverage-report path: ./coverage/merged_coverage.info diff --git a/.github/workflows/packchk.yml b/.github/workflows/packchk.yml index b9668dbfc..603162510 100644 --- a/.github/workflows/packchk.yml +++ b/.github/workflows/packchk.yml @@ -74,7 +74,7 @@ jobs: - name: Archive packchk binary if: ${{ github.event_name != 'release' }} - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: packchk-${{ matrix.target }}-${{ matrix.arch }} path: build/tools/packchk/packchk-*-${{ matrix.target }}-${{ matrix.arch }}.* @@ -134,7 +134,7 @@ jobs: - name: Archive unit test results if: always() && (matrix.arch != 'arm64') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: unit_test_result-${{ matrix.target }}-${{ matrix.arch }} path: ./build/test_reports/packchkunittests-*.xml @@ -143,7 +143,7 @@ jobs: - name: Archive integration test results if: always() && (matrix.arch != 'arm64') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: integ_test_result-${{ matrix.target }}-${{ matrix.arch }} path: ./build/test_reports/packchkintegtests-*.xml @@ -204,7 +204,7 @@ jobs: - name: Archive unit test results if: (github.event_name == 'push') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: unit_test_result-linux-amd64 path: ./build/test_reports/packchkunittests-*.xml @@ -213,7 +213,7 @@ jobs: - name: Archive integration test results if: (github.event_name == 'push') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: integ_test_result-linux-amd64 path: ./build/test_reports/packchkintegtests-*.xml @@ -250,7 +250,7 @@ jobs: attempt_delay: 5000 - name: Archive coverage report - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: coverage-report path: | @@ -300,7 +300,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Event File - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: Event File path: ${{ github.event_path }} diff --git a/.github/workflows/packgen.yml b/.github/workflows/packgen.yml index 493c78b36..9fdb26a10 100644 --- a/.github/workflows/packgen.yml +++ b/.github/workflows/packgen.yml @@ -69,7 +69,7 @@ jobs: arch: ${{ matrix.arch }} - name: Archive packgen - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: packgen-${{ matrix.target }}-${{ matrix.arch }} path: ./build/tools/packgen/${{ matrix.target }}-${{ matrix.arch }}/Release/${{ matrix.binary }} @@ -174,7 +174,7 @@ jobs: - name: Archive unit tests results if: always() && (matrix.arch != 'arm64') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: unit_test_result-${{ matrix.target }}-${{ matrix.arch }} path: ./build/test_reports/packgenunittests-*.xml @@ -225,7 +225,7 @@ jobs: - name: Archive unit tests results if: (github.event_name == 'push') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: unit_test_result-linux-amd64 path: ./build/test_reports/packgenunittests-*.xml @@ -262,7 +262,7 @@ jobs: attempt_delay: 5000 - name: Archive coverage report - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: coverage-report path: | @@ -277,7 +277,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Event File - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: Event File path: ${{ github.event_path }} diff --git a/.github/workflows/projmgr.yml b/.github/workflows/projmgr.yml index 4912af230..2086a1449 100644 --- a/.github/workflows/projmgr.yml +++ b/.github/workflows/projmgr.yml @@ -70,7 +70,7 @@ jobs: arch: ${{ matrix.arch }} - name: Archive projmgr - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: projmgr-${{ matrix.target }}-${{ matrix.arch }} path: ./build/tools/projmgr/${{ matrix.target }}-${{ matrix.arch }}/Release/${{ matrix.binary }} @@ -114,7 +114,7 @@ jobs: - name: Archive projmgr swig python libs if: always() && matrix.pyswig - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: projmgr-swig-python-${{ matrix.target }}-${{ matrix.arch }} path: | @@ -125,7 +125,7 @@ jobs: - name: Archive projmgr swig go libs if: always() && matrix.goswig - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: projmgr-swig-go-${{ matrix.target }}-${{ matrix.arch }} path: | @@ -315,7 +315,7 @@ jobs: - name: Archive unit tests results if: always() && (matrix.arch != 'arm64') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: unittest-${{ matrix.target }}-${{ matrix.arch }} path: ./build/Testing/Temporary/LastTest.log @@ -324,7 +324,7 @@ jobs: - name: Archive gtest report if: always() && (matrix.arch != 'arm64') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: unit_test_result-${{ matrix.target }}-${{ matrix.arch }} path: ./build/test_reports/projmgrunittests-*.xml @@ -375,7 +375,7 @@ jobs: - name: Archive test report if: (github.event_name == 'push') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: unit_test_result-linux-amd64 path: ./build/test_reports/projmgrunittests-*.xml @@ -412,7 +412,7 @@ jobs: attempt_delay: 5000 - name: Archive coverage report - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: coverage-report path: | @@ -427,7 +427,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Event File - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: Event File path: ${{ github.event_path }} diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index d9f2d154f..eef0339ec 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -56,7 +56,7 @@ jobs: # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF # format to the repository Actions tab. - name: "Upload artifact" - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: SARIF file path: results.sarif diff --git a/.github/workflows/svdconv.yml b/.github/workflows/svdconv.yml index 17796bc83..2dcf4a236 100644 --- a/.github/workflows/svdconv.yml +++ b/.github/workflows/svdconv.yml @@ -65,7 +65,7 @@ jobs: - name: Archive svdconv binary if: ${{ github.event_name != 'release' || (needs.setup.outputs.nightly == 'true')}} - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: svdconv-${{ matrix.target }}-${{ matrix.arch }} path: ./build/tools/svdconv/SVDConv/svdconv-*-${{ matrix.target }}-${{ matrix.arch }}.* @@ -125,7 +125,7 @@ jobs: - name: Archive unit test results if: always() && (matrix.arch != 'arm64') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: unit_test_result-${{ matrix.target }}-${{ matrix.arch }} path: ./build/test_reports/svdconvunittests-*.xml @@ -134,7 +134,7 @@ jobs: - name: Archive integration test results if: always() && (matrix.arch != 'arm64') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: integ_test_result-${{ matrix.target }}-${{ matrix.arch }} path: ./build/test_reports/svdconvintegtests-*.xml @@ -195,7 +195,7 @@ jobs: - name: Archive unit test results if: (github.event_name == 'push') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: unit_test_report-linux-amd64 path: ./build/test_reports/svdconvunittests-*.xml @@ -204,7 +204,7 @@ jobs: - name: Archive integration test results if: (github.event_name == 'push') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: integ_test_report-linux-amd64 path: ./build/test_reports/svdconvintegtests-*.xml @@ -248,7 +248,7 @@ jobs: attempt_delay: 5000 - name: Archive coverage report - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: coverage-report path: | @@ -298,7 +298,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Event File - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: Event File path: ${{ github.event_path }} diff --git a/.github/workflows/test_libs.yml b/.github/workflows/test_libs.yml index 45e8fd867..667549dee 100644 --- a/.github/workflows/test_libs.yml +++ b/.github/workflows/test_libs.yml @@ -82,7 +82,7 @@ jobs: - name: Archive libs unittest reports if: always() && (matrix.arch != 'arm64') - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: unit_test_result-${{ matrix.target }}-${{ matrix.arch }} path: ./build/test_reports/*${{ matrix.target }}-${{ matrix.arch }}.xml @@ -95,7 +95,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Event File - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 with: name: Event File path: ${{ github.event_path }}