From 4445364edbb74e54c6776e545e8b3c6ff6af13dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 22:52:29 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ubuntu.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index a1af30c121..e51bcb842f 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -82,7 +82,7 @@ jobs: docker pull fluidity/actions:${{ matrix.release }}-${{ github.sha }} docker run -v $PWD:/host fluidity/actions:${{ matrix.release }}-${{ github.sha }} /bin/bash -c "${{ matrix.command }} && cp -v tests/${{ matrix.output }} /host/${{ matrix.release }}-${{ matrix.output}}" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: path: ${{ matrix.release }}-${{ matrix.output }} name: $${{ matrix.release }}_$${{ matrix.output }} @@ -215,7 +215,7 @@ jobs: docker pull fluidity/actions:noble-${{ github.sha }} docker run -v $PWD:/host fluidity/actions:noble-${{ github.sha }} /bin/bash -c "git clone https://github.com/fluidityproject/longtests && bin/testharness -x test_results_${{ matrix.name }}.xml -f ${{ matrix.name }}.xml && cp -v test_results_${{ matrix.name }}.xml /host" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: path: test_results_${{ matrix.name }}.xml name: longtests_xml_outputs_$${{ matrix.name }}