diff --git a/.github/workflows/benchmarks-run.yml b/.github/workflows/benchmarks-run.yml index 786a93c014..3aa04dd4fc 100644 --- a/.github/workflows/benchmarks-run.yml +++ b/.github/workflows/benchmarks-run.yml @@ -35,7 +35,7 @@ jobs: ./scripts/run_benchmarks.sh -b - name: Upload Binary - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: benchmark-binary path: | @@ -44,7 +44,7 @@ jobs: retention-days: 3 - name: Upload WASM Build Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: wasm-artifacts path: target/release/wbuild diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e102e58527..32c4c089ba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -91,7 +91,7 @@ jobs: ./scripts/run_benchmarks.sh -b - name: Upload Binary - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: benchmark-binary path: | @@ -100,7 +100,7 @@ jobs: retention-days: 3 - name: Upload WASM Build Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: wasm-artifacts path: target/release/wbuild @@ -293,7 +293,7 @@ jobs: working-directory: ${{env.BIN_DIR}} run: gpg --verify ${{env.RELEASE_BIN_FILENAME}}.asc - name: Upload Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifacts-binary-${{matrix.network}}-${{matrix.arch}}-${{github.run_id}} path: | @@ -389,7 +389,7 @@ jobs: subwasm info ${{env.WASM_DIR}}/${{env.RELEASE_WASM_FILENAME}} | grep "Core version:.*${{matrix.wasm-core-version}}-${{env.RUNTIME_SPEC_VERSION}}" || \ (echo "ERROR: WASM Core version didn't match ${{matrix.wasm-core-version}}-${{env.RUNTIME_SPEC_VERSION}}" && exit 1) - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifacts-wasm-${{matrix.network}}-${{github.run_id}} path: ${{env.WASM_DIR}}/${{env.RELEASE_WASM_FILENAME}} @@ -472,7 +472,7 @@ jobs: run: npm run build working-directory: js/api-augment - name: Upload Dist Dir - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: js-api-augment-${{github.run_id}} path: js/api-augment/dist @@ -499,7 +499,7 @@ jobs: run: npm run build working-directory: js/ethereum-utils - name: Upload Dist Dir - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: js-ethereum-utils-${{github.run_id}} path: js/ethereum-utils/dist @@ -526,7 +526,7 @@ jobs: run: npm run build working-directory: js/schemas - name: Upload Dist Dir - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: js-schemas-${{github.run_id}} path: js/schemas/dist @@ -553,7 +553,7 @@ jobs: run: npm run build working-directory: js/recovery-sdk - name: Upload Dist Dir - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: js-recovery-sdk-${{github.run_id}} path: js/recovery-sdk/dist @@ -735,7 +735,7 @@ jobs: run: | cat ${{env.OUTPUT_FILENAME}} - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifacts-metadata-${{github.run_id}} path: ${{env.OUTPUT_DIR}}/${{env.OUTPUT_FILENAME}} diff --git a/.github/workflows/verify-pr-commit.yml b/.github/workflows/verify-pr-commit.yml index 1a2ba50553..3a2f7a098e 100644 --- a/.github/workflows/verify-pr-commit.yml +++ b/.github/workflows/verify-pr-commit.yml @@ -224,7 +224,7 @@ jobs: working-directory: target/${{matrix.build-profile}} run: cp ${{env.BUILT_BIN_FILENAME}} ${{env.FINAL_BIN_FILENAME}} - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifacts-binary-${{matrix.network}}-${{matrix.arch}}-${{matrix.branch_alias}}-${{github.run_id}} path: target/${{matrix.build-profile}}/${{env.FINAL_BIN_FILENAME}}* @@ -481,7 +481,7 @@ jobs: run: npm pack working-directory: js/api-augment/dist - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifacts-api-augment-${{github.run_id}} path: js/api-augment/dist/frequency-chain-api-augment-0.0.0.tgz @@ -518,7 +518,7 @@ jobs: run: npm pack working-directory: js/ethereum-utils/dist - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifacts-ethereum-utils-${{github.run_id}} path: js/ethereum-utils/dist/frequency-chain-ethereum-utils-0.0.0.tgz @@ -554,7 +554,7 @@ jobs: run: npm pack working-directory: js/schemas/dist - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifacts-schemas-${{github.run_id}} path: js/schemas/dist/frequency-chain-schemas-0.0.0.tgz @@ -590,7 +590,7 @@ jobs: run: npm pack working-directory: js/recovery-sdk/dist - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifacts-recovery-sdk-${{github.run_id}} path: js/recovery-sdk/dist/frequency-chain-recovery-sdk-0.0.0.tgz