From a488fa4c86dda003356882151d1a41a1c7ad1644 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 03:17:57 +0000 Subject: [PATCH] build(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/deploy.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 6699f86..3e2e031 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -78,7 +78,7 @@ jobs: run: strip --strip-all target/${{ matrix.target }}/release/strip-ansi - name: Upload build artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: strip-ansi-${{ matrix.target }} path: target/${{ matrix.target }}/release/strip-ansi @@ -114,7 +114,7 @@ jobs: run: strip target/${{ matrix.target }}/release/strip-ansi - name: Upload build artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: strip-ansi-${{ matrix.target }} path: target/${{ matrix.target }}/release/strip-ansi @@ -148,7 +148,7 @@ jobs: run: cargo build --target ${{ matrix.target }} --release - name: Upload build artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: strip-ansi-${{ matrix.target }} path: target/${{ matrix.target }}/release/strip-ansi.exe @@ -340,7 +340,7 @@ jobs: run: ./ci/github-actions/create-checksums.sh - name: Upload as artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: checksums path: sha*sum.txt