diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index ada8fb64..cac37010 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -170,7 +170,7 @@ jobs: fi - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v7 if: always() with: name: asv-benchmark-results-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}-${{ matrix.benchmark-name }} @@ -182,13 +182,13 @@ jobs: if: always() steps: - name: Download artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: pattern: asv-benchmark-results* path: asv_result merge-multiple: true - name: Upload artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: asv-benchmark-results-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }} path: asv_result diff --git a/.github/workflows/benchmarks_report.yml b/.github/workflows/benchmarks_report.yml index 171b2d43..8bfa768d 100644 --- a/.github/workflows/benchmarks_report.yml +++ b/.github/workflows/benchmarks_report.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Download artifact" - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ @@ -68,7 +68,7 @@ jobs: - name: "Comment on PR" if: env.PR_NUMBER != '' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -84,7 +84,7 @@ jobs: - name: "Remove run-benchmarks label" if: env.PR_NUMBER != '' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3c55bdff..3e247592 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Download built artifact to dist/ - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: name: Packages path: dist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c81ae17b..a5b32b92 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -62,11 +62,11 @@ jobs: PLATFORM: ${{ matrix.platform }} - name: Coverage - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 - name: Archive figures generated during testing if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: plotting-results-${{ matrix.python-version }}-${{ matrix.platform }} path: /Users/runner/work/napari-spatialdata/napari-spatialdata/tests/plots/generated/*