From 2e6bf6bfe4c088fd6464be2f40e160de3e877264 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 23:56:21 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/base_node_binaries.yml | 12 ++++++------ .github/workflows/build_libffis.yml | 6 +++--- .github/workflows/ci.yml | 6 +++--- .github/workflows/integration_tests.yml | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/base_node_binaries.yml b/.github/workflows/base_node_binaries.yml index a137fde0450..248b7d4e3ae 100644 --- a/.github/workflows/base_node_binaries.yml +++ b/.github/workflows/base_node_binaries.yml @@ -147,7 +147,7 @@ jobs: - name: Debugging - Upload logs if dependences failures if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.TBN_FILENAME }}-windows-dependences-logs path: C:\ProgramData\chocolatey\logs\chocolatey.log @@ -340,7 +340,7 @@ jobs: - name: Artifact upload for macOS pkg if: startsWith(runner.os,'macOS') continue-on-error: true - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.TBN_FILENAME }}-${{ matrix.builds.name }}-${{ env.VERSION }}.pkg path: "${{ env.distDirPKG }}/${{ env.TBN_FILENAME }}-${{ matrix.builds.name }}-${{ env.VERSION }}*.pkg*" @@ -355,7 +355,7 @@ jobs: "%programfiles(x86)%\Inno Setup 6\iscc.exe" "/DMyAppVersion=${{ env.VERSION }}-${{ env.VSHA_SHORT }}-release" "/DTariSuitePath=${{ github.workspace }}${{ env.TBN_DIST }}" "windows_inno_installer.iss" - name: Artifact upload for Windows installer - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: startsWith(runner.os,'Windows') with: name: "${{ env.TBN_FILENAME }}_windows_installer" @@ -380,7 +380,7 @@ jobs: ${SHARUN} --check "${{ env.BINFILE }}.zip.sha256" - name: Artifact upload for Archive - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.TBN_FILENAME }}_archive-${{ matrix.builds.name }} path: "${{ github.workspace }}${{ env.TBN_DIST }}/${{ env.BINFILE }}.zip*" @@ -399,7 +399,7 @@ jobs: ${SHARUN} --check "minotari_miner-${{ matrix.builds.name }}${{ env.TBN_EXT}}.sha256" - name: Artifact upload for Miner - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: minotari_miner-${{ matrix.builds.name }} path: "${{ github.workspace }}${{ env.TBN_DIST }}/minotari_miner-${{ matrix.builds.name }}${{ env.TBN_EXT}}*" @@ -429,7 +429,7 @@ jobs: - name: Artifact upload for diag-utils continue-on-error: true - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.TBN_FILENAME }}_archive-diag-utils-${{ matrix.builds.name }} path: "${{ github.workspace }}${{ env.TBN_DIST }}/diag-utils/*.zip*" diff --git a/.github/workflows/build_libffis.yml b/.github/workflows/build_libffis.yml index c21fafc8591..db36f28ad6f 100644 --- a/.github/workflows/build_libffis.yml +++ b/.github/workflows/build_libffis.yml @@ -172,7 +172,7 @@ jobs: ls -alhtR "${{ runner.temp }}/lib${{ matrix.libffis }}-${{ env.TARGET_PLATFORM }}-${{ env.TARGET_ARCH }}${{ env.TARGET_SIM }}" - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: lib${{ matrix.libffis }}-${{ env.TARGET_PLATFORM }}-${{ env.TARGET_ARCH }}${{ env.TARGET_SIM }} path: ${{ runner.temp }}/lib${{ matrix.libffis }}-${{ env.TARGET_PLATFORM }}-${{ env.TARGET_ARCH }}${{ env.TARGET_SIM }} @@ -247,7 +247,7 @@ jobs: ls -alhtR - name: Upload iOS universal libffis artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: lib${{ matrix.libffis }}-ios-universal path: libffiss/lib${{ matrix.libffis }}-ios-universal @@ -299,7 +299,7 @@ jobs: ls -alhtR - name: Upload iOS xcframework libffis artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: lib${{ matrix.libffis }}-ios-xcframework path: libffiss/lib${{ matrix.libffis }}-ios-xcframework diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d67cd16ede..9d4ba881208 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -201,7 +201,7 @@ jobs: - name: cargo test run: cargo nextest run --all-features --release -E "not package(tari_integration_tests)" --profile ci - name: upload artifact - uses: actions/upload-artifact@v3 # upload test results as artifact + uses: actions/upload-artifact@v4 # upload test results as artifact if: always() with: name: test-results @@ -219,7 +219,7 @@ jobs: run: echo $PR_NUM > pr_num.txt - name: Upload the PR number - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: pr_num path: ./pr_num.txt @@ -230,7 +230,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Upload - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Event File path: ${{ github.event_path }} diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 12e8ed13932..ab96e480482 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -109,7 +109,7 @@ jobs: --retry 2 - name: upload artifact - uses: actions/upload-artifact@v3 # upload test results as artifact + uses: actions/upload-artifact@v4 # upload test results as artifact if: always() with: name: junit-cucumber @@ -191,7 +191,7 @@ jobs: --retry 2 - name: upload artifact - uses: actions/upload-artifact@v3 # upload test results as artifact + uses: actions/upload-artifact@v4 # upload test results as artifact if: always() with: name: junit-ffi-cucumber @@ -203,7 +203,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Upload - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Event File path: ${{ github.event_path }}