Skip to content

Commit 92deb5e

Browse files
committed
Use upload-artifact v4 because v3 is deprecated and the action cannot be run
1 parent fafac68 commit 92deb5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ jobs:
8282
# (This artifact is downloadable at the bottom of any job's summary page)
8383
- name: Upload Results of ${{ matrix.type }} to Artifact
8484
if: ${{ failure() }}
85-
uses: actions/upload-artifact@v3
85+
uses: actions/upload-artifact@v4
8686
with:
8787
name: ${{ matrix.type }} results
8888
path: ${{ matrix.resultsdir }}
8989

9090
# Upload code coverage report to artifact, so that it can be shared with the 'codecov' job (see below)
9191
- name: Upload code coverage report to Artifact
92-
uses: actions/upload-artifact@v3
92+
uses: actions/upload-artifact@v4
9393
with:
9494
name: ${{ matrix.type }} coverage report
9595
path: 'dspace/target/site/jacoco-aggregate/jacoco.xml'

0 commit comments

Comments
 (0)