Skip to content

Commit

Permalink
Update github actions to use upload_artifact@4 (#1734)
Browse files Browse the repository at this point in the history
* upload_artifact v3 is deprecated and will be deactivated soon
  • Loading branch information
lbergelson authored Dec 17, 2024
1 parent 68567fa commit c31bc92
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: ./gradlew test jacocoTestReport
- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results-${{ matrix.Java }}
path: build/reports/tests
Expand All @@ -65,7 +65,7 @@ jobs:
# run: bash <(curl -s https://raw.githubusercontent.com/broadinstitute/codecov-bash-uploader/main/codecov-verified.bash)
- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results-external-apis
path: build/reports/tests
Expand All @@ -91,7 +91,7 @@ jobs:
# run: bash <(curl -s https://raw.githubusercontent.com/broadinstitute/codecov-bash-uploader/main/codecov-verified.bash)
- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results-ftp
path: build/reports/tests
Expand All @@ -112,7 +112,7 @@ jobs:
run: ./gradlew spotBugsMain spotBugsTest
- name: Upload spotBugs Report
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: spotBugs-Report
path: build/reports/spotbugs
Expand Down

0 comments on commit c31bc92

Please sign in to comment.