Skip to content
Closed
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
12 changes: 6 additions & 6 deletions .github/workflows/build_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ jobs:
if: ${{ false }}
# if: startsWith(runner.os,'macOS')
continue-on-error: true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.TS_FILENAME }}_unsigned-archive-${{ matrix.builds.name }}
path: "${{ env.MTS_SOURCE }}/*"
Expand Down Expand Up @@ -439,7 +439,7 @@ jobs:
if: ${{ false }}
# if: startsWith(runner.os,'macOS')
continue-on-error: true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.TS_FILENAME }}-${{ matrix.builds.name }}-${{ env.TARI_VERSION }}.pkg
path: "${{ env.distDirPKG }}/${{ env.TS_FILENAME }}-${{ matrix.builds.name }}-${{ env.TARI_VERSION }}*.pkg*"
Expand Down Expand Up @@ -482,7 +482,7 @@ jobs:
if: ${{ false }}
# if: startsWith(runner.os,'Windows')
continue-on-error: true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: "${{ env.TS_FILENAME }}_windows_installer"
path: "${{ github.workspace }}/buildtools/Output/*"
Expand All @@ -507,7 +507,7 @@ jobs:
${SHARUN} --check "${{ env.BINFILE }}.zip.sha256"

- name: Artifact upload for Archive
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.TS_FILENAME }}_archive-${{ matrix.builds.name }}
path: "${{ github.workspace }}${{ env.TS_DIST }}/${{ env.BINFILE }}.zip*"
Expand Down Expand Up @@ -672,7 +672,7 @@ jobs:
- name: Artifact upload for macOS universal pkg
if: startsWith(runner.os,'macOS')
continue-on-error: true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.TS_FILENAME }}-macos-universal-${{ env.TARI_VERSION }}.pkg
path: "${{ env.distDirPKG }}/${{ env.TS_FILENAME }}-macos-universal-${{ env.TARI_VERSION }}*.pkg*"
Expand Down Expand Up @@ -700,7 +700,7 @@ jobs:
${SHARUN} --check "${BINFILE}.zip.sha256"

- name: Artifact upload for Archive
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.TS_FILENAME }}_archive-macos-universal
path: "${{ github.workspace }}/osxuni/macos-universal/${{ env.BINFILE }}.zip*"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ jobs:
- name: cargo test
run: cargo nextest run --all-features --release -E "not package(integration_tests)"
- name: upload artifact
uses: actions/upload-artifact@v4 # upload test results as artifact
uses: actions/upload-artifact@v5 # upload test results as artifact
if: always()
with:
name: test-results-${{ matrix.tari_target_network.target }}.${{ matrix.tari_target_network.network }}
Expand All @@ -210,7 +210,7 @@ jobs:
run: echo $PR_NUM > pr_num.txt

- name: Upload the PR number
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pr_num
path: ./pr_num.txt
Expand All @@ -221,7 +221,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Event File
path: ${{ github.event_path }}
4 changes: 2 additions & 2 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
--retry 2

- name: upload artifact
uses: actions/upload-artifact@v4 # upload test results as artifact
uses: actions/upload-artifact@v5 # upload test results as artifact
if: always()
with:
name: junit-cucumber
Expand All @@ -110,7 +110,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Event File
path: ${{ github.event_path }}
Loading