From 2937038e91a94c12111429501bb0717cf6f2dd0b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 09:45:59 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/CommonCI.yml | 2 +- .github/workflows/benchmark.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CommonCI.yml b/.github/workflows/CommonCI.yml index 6a888f9e4b..bc6ccde3ed 100644 --- a/.github/workflows/CommonCI.yml +++ b/.github/workflows/CommonCI.yml @@ -185,7 +185,7 @@ jobs: REACTANT_TEST_GROUP: ${{ inputs.test_group }} - name: "Upload MLIR modules" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 timeout-minutes: 10 if: always() with: diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 4fb714dab8..b930c22de7 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -53,7 +53,7 @@ jobs: run: | julia --color=yes --project=benchmark benchmark/runbenchmarks.jl - name: Upload PProf Results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 timeout-minutes: 10 with: name: pprof-results-${{ matrix.os }} @@ -61,7 +61,7 @@ jobs: retention-days: 90 overwrite: false - name: Upload Benchmark Results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 timeout-minutes: 10 with: name: benchmark-results-${{ matrix.os }} @@ -95,7 +95,7 @@ jobs: echo "path=$(find benchmark -type f -name combinedbenchmarks.json 2>/dev/null)" >> $GITHUB_OUTPUT - name: Upload benchmark results as artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: benchmark-results path: ${{ steps.locate.outputs.path }}