From 33297acb0c59b80b76cf98f47cc57f437dbb54d2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 22:02:08 +0000 Subject: [PATCH] chore(deps): update actions/upload-artifact action to v7 --- .github/workflows/push.yml | 2 +- .github/workflows/release-prod.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 75be2f1..7ea5f83 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -39,7 +39,7 @@ jobs: - name: Build run: cargo build --release --target ${{ matrix.target }} - name: Upload artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: doclytics-${{ env.BRANCH_NAME }}-${{ matrix.os }} path: | diff --git a/.github/workflows/release-prod.yml b/.github/workflows/release-prod.yml index 42c83ec..19a5174 100644 --- a/.github/workflows/release-prod.yml +++ b/.github/workflows/release-prod.yml @@ -40,7 +40,7 @@ jobs: - name: Build run: cargo build --release --target ${{ matrix.target }} - name: Upload artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: doclytics-${{ env.BRANCH_NAME }}-${{ matrix.os }} path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 17309fb..8139bcb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: - name: Build run: cargo build --release --target ${{ matrix.target }} - name: Upload artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TAG_NAME: ${{ github.ref }} # Assumes the tag name is the same as the ref. Adjust if necessary.