diff --git a/.github/workflows/ci-actions.yml b/.github/workflows/ci-actions.yml index f1618c5dfb..ac69448911 100644 --- a/.github/workflows/ci-actions.yml +++ b/.github/workflows/ci-actions.yml @@ -60,7 +60,7 @@ jobs: zip -r wildfly.zip wildfly cd .. - name: Persist WildFly - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: wildfly-patched-zip path: container/wildfly.zip @@ -68,7 +68,7 @@ jobs: shell: bash run: tar -czf maven-repo.tgz -C ~ .m2/repository - name: Persist Maven Repo - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: maven-repo path: maven-repo.tgz @@ -132,13 +132,13 @@ jobs: find . -name '*-reports' -type d | tar -czf test-reports.tgz -T - find . -name 'server.log' -type f | tar -czf server-log.tgz -T - - name: Upload failure Archive (if maven failed) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: test-reports-incontainer-jdk${{matrix.java.name}} path: 'test-reports.tgz' - name: Upload server log artifact (if maven failed) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: server-log-incontainer-jdk${{matrix.java.name}} @@ -200,13 +200,13 @@ jobs: find . -name '*-reports' -type d | tar -czf test-reports.tgz -T - find . -name 'server.log' -type f | tar -czf server-log.tgz -T - - name: Upload failure Archive (if maven failed) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: test-reports-cdi-tck-jdk${{matrix.java.name}} path: 'test-reports.tgz' - name: Upload server log artifact (if maven failed) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: server-log-cdi-tck-jdk${{matrix.java.name}} @@ -259,13 +259,13 @@ jobs: find . -name '*-reports' -type d | tar -czf test-reports.tgz -T - find . -name 'server.log' -type f | tar -czf server-log.tgz -T - - name: Upload failure Archive (if maven failed) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: test-reports-cdi-tck-jdk${{matrix.java.name}}-incontainer-relaxed path: 'test-reports.tgz' - name: Upload server log artifact (if maven failed) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: server-log-cdi-tck-jdk${{matrix.java.name}} @@ -278,7 +278,7 @@ jobs: shell: bash run: find . -name '*-reports' -type d | tar -czf test-reports.tgz -T - - name: Upload failure Archive (if maven failed) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: test-reports-cdi-tck-jdk${{matrix.java.name}}-relaxed @@ -329,7 +329,7 @@ jobs: shell: bash run: find . -name '*-reports' -type d | tar -czf test-reports.tgz -T - - name: Upload failure Archive (if maven failed) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: test-reports-no-container-jdk${{matrix.java.name}} @@ -383,13 +383,13 @@ jobs: find . -name '*-reports' -type d | tar -czf test-reports.tgz -T - find . -name 'server.log' -type f | tar -czf server-log.tgz -T - - name: Upload failed tests artifact (if maven failed) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: test-reports-examples path: 'test-reports.tgz' - name: Upload server log artifact (if maven failed) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: server-log-examples @@ -440,7 +440,7 @@ jobs: shell: bash run: find . -name '*-reports' -type d | tar -czf test-reports.tgz -T - - name: Upload failure Archive (if maven failed) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: test-reports-cdi-tck-se-jdk${{matrix.java.name}} @@ -475,7 +475,7 @@ jobs: shell: bash run: find . -name '*-reports' -type d | tar -czf test-reports.tgz -T - - name: Upload failure Archive (if maven failed) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: test-reports-se-servlet-coop diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8eb31bcebb..3ebc7ab4d0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,7 @@ jobs: git checkout ${{steps.metadata.outputs.current-version}} gradle -PweldVersion=${{steps.metadata.outputs.current-version}} -PweldPath=${GITHUB_WORKSPACE} - name: Upload dist ZIP file - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: dist path: ./dist/weld-* \ No newline at end of file