From 2bc015ce3ba39c1d2022c814f347909579b3bd34 Mon Sep 17 00:00:00 2001 From: Nicholas Lundgaard Date: Tue, 4 Mar 2025 19:43:05 +0000 Subject: [PATCH] Fix coverage Fixes > Error: This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v3`. Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ --- .github/workflows/coverage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 5df90ea..2a78131 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -14,7 +14,7 @@ jobs: pull-requests: write contents: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python id: setup-python @@ -38,7 +38,7 @@ jobs: GITHUB_PR_RUN_ID: ${{ github.run_id }} - name: Store Pull Request comment to be posted - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true' with: name: python-coverage-comment-action