From 5b1e4ef10b6b48f5992e1ebb767eefb2c47ab580 Mon Sep 17 00:00:00 2001 From: dgboss Date: Wed, 4 Sep 2024 11:57:25 -0700 Subject: [PATCH] Align upload/download artifact action versions (#3894) --- .github/workflows/integration.yml | 6 +++--- .github/workflows/post_merge_integration.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 9d412c9bd..c7880650e 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -175,7 +175,7 @@ jobs: poetry run coverage report poetry run coverage xml -o coverage-reports/coverage-report.xml - name: Archive coverage report (api) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: api-coverage-report path: ./api/coverage-reports/coverage-report.xml @@ -231,7 +231,7 @@ jobs: run: yarn run finalizeCoverage - name: Archive coverage report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: web-coverage-report path: ./web/finalCoverage @@ -244,7 +244,7 @@ jobs: - name: Checkout repo uses: actions/checkout@v4 - name: Download all workflow run artifacts - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 - name: Upload test coverage to Codecov uses: codecov/codecov-action@v4 with: diff --git a/.github/workflows/post_merge_integration.yml b/.github/workflows/post_merge_integration.yml index 2b68678cd..0773101ea 100644 --- a/.github/workflows/post_merge_integration.yml +++ b/.github/workflows/post_merge_integration.yml @@ -174,7 +174,7 @@ jobs: poetry run coverage report poetry run coverage xml -o coverage-reports/coverage-report.xml - name: Archive coverage report (api) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: api-coverage-report path: ./api/coverage-reports/coverage-report.xml @@ -230,7 +230,7 @@ jobs: run: yarn run finalizeCoverage - name: Archive coverage report (web) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: web-coverage-report path: ./web/finalCoverage @@ -243,7 +243,7 @@ jobs: - name: Checkout repo uses: actions/checkout@v4 - name: Download all workflow run artifacts - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 - name: Upload test coverage to Codecov uses: codecov/codecov-action@v4 with: