From 56007b3d0b048e3ecff237373dd38ba3e6a27238 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 20:39:48 +0000 Subject: [PATCH] chore(deps): update actions/upload-artifact action to v7 --- .github/workflows/build-in-devcontainer.yaml | 2 +- .github/workflows/conda-cpp-build.yaml | 2 +- .github/workflows/conda-python-build.yaml | 2 +- .github/workflows/custom-job.yaml | 2 +- .github/workflows/wheels-build.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-in-devcontainer.yaml b/.github/workflows/build-in-devcontainer.yaml index fb095d8c..43041451 100644 --- a/.github/workflows/build-in-devcontainer.yaml +++ b/.github/workflows/build-in-devcontainer.yaml @@ -211,7 +211,7 @@ jobs: - if: ${{ !cancelled() }} name: Upload sccache logs - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: sccache-client-logs-${{ env.BUILD_SLUG }}-${{ env.ARTIFACT_SLUG }} path: repo/sccache*.log diff --git a/.github/workflows/conda-cpp-build.yaml b/.github/workflows/conda-cpp-build.yaml index 2ae1a55a..b8b45377 100644 --- a/.github/workflows/conda-cpp-build.yaml +++ b/.github/workflows/conda-cpp-build.yaml @@ -215,7 +215,7 @@ jobs: run: | echo "Contents of directory to be uploaded:" ls -R "${CONDA_OUTPUT_DIR}" - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 if: ${{ inputs.upload-artifacts }} with: if-no-files-found: 'error' diff --git a/.github/workflows/conda-python-build.yaml b/.github/workflows/conda-python-build.yaml index 9ea282b4..9613c0ec 100644 --- a/.github/workflows/conda-python-build.yaml +++ b/.github/workflows/conda-python-build.yaml @@ -251,7 +251,7 @@ jobs: run: | echo "Contents of directory to be uploaded:" ls -R "${CONDA_OUTPUT_DIR}" - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 if: ${{ inputs.upload-artifacts }} with: if-no-files-found: 'error' diff --git a/.github/workflows/custom-job.yaml b/.github/workflows/custom-job.yaml index 410fc4b8..38bd49b1 100644 --- a/.github/workflows/custom-job.yaml +++ b/.github/workflows/custom-job.yaml @@ -208,7 +208,7 @@ jobs: GH_TOKEN: ${{ inputs.alternative-gh-token-secret-name && secrets[inputs.alternative-gh-token-secret-name] || github.token }} # zizmor: ignore[overprovisioned-secrets] INPUTS_SCRIPT: ${{ inputs.script }} - name: Upload file to GitHub Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ inputs.artifact-name }} path: ${{ inputs.file_to_upload }} diff --git a/.github/workflows/wheels-build.yaml b/.github/workflows/wheels-build.yaml index 425d1823..a3b41f1c 100644 --- a/.github/workflows/wheels-build.yaml +++ b/.github/workflows/wheels-build.yaml @@ -320,7 +320,7 @@ jobs: echo "Contents of directory to be uploaded:" ls -R "$WHEEL_OUTPUT_DIR" - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 if: ${{ inputs.upload-artifacts }} with: if-no-files-found: 'error'