Skip to content

Commit

Permalink
Align upload/download artifact action versions (#3894)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgboss authored Sep 4, 2024
1 parent 7df2ef7 commit 5b1e4ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/post_merge_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit 5b1e4ef

Please sign in to comment.