Skip to content

Commit

Permalink
update artifact actions
Browse files Browse the repository at this point in the history
  • Loading branch information
djbrown authored Mar 31, 2024
1 parent 28b3b7a commit 7495600
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Generate coverage report
run: pipenv run coverage xml
- name: Upload coverage report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage report
path: coverage.xml
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
needs: main
steps:
- name: Download coverage report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage report
- uses: codacy/codacy-coverage-reporter-action@v1
Expand All @@ -91,7 +91,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Download coverage report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage report
- uses: paambaati/codeclimate-action@v5 # see https://github.com/paambaati/codeclimate-action/issues/638
Expand All @@ -103,7 +103,7 @@ jobs:
needs: main
steps:
- name: Download coverage report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage report
- uses: codecov/codecov-action@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
env:
TEST_OUTPUT_FILE_NAME: unit.xml
- name: Upload unit test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: unit-test-results
Expand Down

0 comments on commit 7495600

Please sign in to comment.