3939 # Basic setup chores
4040 - uses : actions/checkout@v5
4141 - name : Set up JDK ${{ matrix.jdk }}
42- uses : actions/setup-java@v4
42+ uses : actions/setup-java@v5
4343 with :
4444 java-version : ${{ matrix.jdk }}
4545 distribution : temurin
6262
6363 # Upload the built war file. For download, it will be wrapped in a ZIP by GitHub.
6464 # See also https://github.com/actions/upload-artifact#zipped-artifact-downloads
65- - uses : actions/upload-artifact@v4
65+ - uses : actions/upload-artifact@v5
6666 with :
6767 name : dataverse-java${{ matrix.jdk }}.war
6868 path : target/dataverse*.war
7272 - run : |
7373 tar -cvf java-builddir.tar target
7474 tar -cvf java-m2-selection.tar ~/.m2/repository/io/gdcc/dataverse-*
75- - uses : actions/upload-artifact@v4
75+ - uses : actions/upload-artifact@v5
7676 with :
7777 name : java-artifacts
7878 path : |
@@ -105,14 +105,14 @@ jobs:
105105 # Basic setup chores
106106 - uses : actions/checkout@v5
107107 - name : Set up JDK ${{ matrix.jdk }}
108- uses : actions/setup-java@v4
108+ uses : actions/setup-java@v5
109109 with :
110110 java-version : ${{ matrix.jdk }}
111111 distribution : temurin
112112 cache : maven
113113
114114 # Get the build output from the unit test job
115- - uses : actions/download-artifact@v5
115+ - uses : actions/download-artifact@v6
116116 with :
117117 name : java-artifacts
118118 - run : |
@@ -124,7 +124,7 @@ jobs:
124124
125125 # Wrap up and send to coverage job
126126 - run : tar -cvf java-reportdir.tar target/site
127- - uses : actions/upload-artifact@v4
127+ - uses : actions/upload-artifact@v5
128128 with :
129129 name : java-reportdir
130130 path : java-reportdir.tar
@@ -138,14 +138,14 @@ jobs:
138138 # TODO: As part of #10618 change to setup-maven custom action
139139 # Basic setup chores
140140 - uses : actions/checkout@v5
141- - uses : actions/setup-java@v4
141+ - uses : actions/setup-java@v5
142142 with :
143143 java-version : ' 17'
144144 distribution : temurin
145145 cache : maven
146146
147147 # Get the build output from the integration test job
148- - uses : actions/download-artifact@v5
148+ - uses : actions/download-artifact@v6
149149 with :
150150 name : java-reportdir
151151 - run : tar -xvf java-reportdir.tar
0 commit comments