From 8a7a477533f2607826d899c06ed675bc0ccde7f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 20:03:59 +0000 Subject: [PATCH] build(deps): Bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...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/deploy.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 5999ad9..8696bda 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -72,7 +72,7 @@ jobs: run: strip --strip-all target/${{ matrix.target }}/release/pretty-exec - name: Upload build artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: pretty-exec-${{ matrix.target }} path: target/${{ matrix.target }}/release/pretty-exec @@ -105,7 +105,7 @@ jobs: run: strip target/${{ matrix.target }}/release/pretty-exec - name: Upload build artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: pretty-exec-${{ matrix.target }} path: target/${{ matrix.target }}/release/pretty-exec @@ -136,7 +136,7 @@ jobs: run: cargo build --target ${{ matrix.target }} --release - name: Upload build artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: pretty-exec-${{ matrix.target }} path: target/${{ matrix.target }}/release/pretty-exec.exe @@ -328,7 +328,7 @@ jobs: run: ./ci/github-actions/create-checksums.sh - name: Upload as artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: checksums path: sha*sum.txt