Skip to content

Commit 6a46da5

Browse files
authored
Merge pull request #12 from maxkratz/feature/update-upload-download-artifact-github-actions
Updates the upload/download artifact GitHub Action to v6/v7
2 parents 64e53a0 + 7f8c174 commit 6a46da5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
cd $START_PWD/$TEST_PROJECT/
6969
ant -f $JAR_NAME.xml
7070
- name: Upload JAR file
71-
uses: actions/upload-artifact@v4
71+
uses: actions/upload-artifact@v6
7272
with:
7373
name: ${{ env.JAR_NAME }}.jar
7474
path: ${{ env.TEST_PROJECT }}/${{ env.JAR_NAME }}.jar
@@ -86,7 +86,7 @@ jobs:
8686
distribution: 'adopt'
8787
java-version: '21'
8888
- name: Download JAR file
89-
uses: actions/download-artifact@v4
89+
uses: actions/download-artifact@v7
9090
with:
9191
name: ${{ env.JAR_NAME }}.jar
9292
# Currently, this workaround is needed for HiPE
@@ -104,7 +104,7 @@ jobs:
104104
with:
105105
JUNIT_FILES: build/reports/*.xml
106106
- name: Upload test reports
107-
uses: actions/upload-artifact@v4
107+
uses: actions/upload-artifact@v6
108108
with:
109109
name: test-reports
110110
path: |

0 commit comments

Comments
 (0)