diff --git a/.github/workflows/ci-actions-incremental.yml b/.github/workflows/ci-actions-incremental.yml index 26b0b7059610f..a102894f05bad 100644 --- a/.github/workflows/ci-actions-incremental.yml +++ b/.github/workflows/ci-actions-incremental.yml @@ -64,7 +64,7 @@ jobs: run: | echo -n ${{ github.event.number }} > pull-request-number - name: Upload pull request number - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: pull-request-number-${{ github.event.number }} path: pull-request-number @@ -79,7 +79,7 @@ jobs: run: | echo -n 25363 > report-issue-number - name: Upload report issue number - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: report-issue-number-25363 path: report-issue-number @@ -194,7 +194,7 @@ jobs: shell: bash run: tar -I 'pigz -9' -cf maven-repo.tgz -C ~ .m2/repository - name: Persist Maven Repo - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: maven-repo path: maven-repo.tgz @@ -203,7 +203,7 @@ jobs: shell: bash run: rm -r ~/.m2/repository/io/quarkus - name: Upload build reports (if build failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: ${{ failure() || cancelled() }} with: name: "build-reports-Initial JDK 11 Build" @@ -351,14 +351,14 @@ jobs: shell: bash run: find . -name '*-reports' -type d -o -name '*.log' | tar -czf test-reports.tgz -T - - name: Upload failure Archive (if maven failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: test-reports-jvm${{matrix.java.name}} path: 'test-reports.tgz' retention-days: 5 - name: Upload build reports (if build failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: ${{ failure() || cancelled() }} with: name: "build-reports-JVM Tests - JDK ${{matrix.java.name}}" @@ -368,7 +368,7 @@ jobs: LICENSE.txt retention-days: 2 - name: Upload gc.log - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: "GC log - JDK ${{matrix.java.name}}" path: | @@ -376,7 +376,7 @@ jobs: !**/build/tmp/** retention-days: 5 - name: Upload build.log (if build failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: ${{ failure() || cancelled() }} with: name: "build-logs-JVM Tests - JDK ${{matrix.java.name}}" @@ -433,7 +433,7 @@ jobs: shell: bash run: find . -name '*-reports' -type d -o -name '*.log' | tar -czf test-reports.tgz -T - - name: Upload failure Archive (if maven failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: test-reports-maven-java${{matrix.java.name}} @@ -448,7 +448,7 @@ jobs: if [ -d 'integration-tests/maven/target/test-classes/projects/qit?uber?jar' ]; then mv 'integration-tests/maven/target/test-classes/projects/qit?uber?jar' 'integration-tests/maven/target/test-classes/projects/qit--uber--jar'; fi shell: bash - name: Upload build reports (if build failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: ${{ failure() || cancelled() }} with: name: "build-reports-Maven Tests - JDK ${{matrix.java.name}}" @@ -511,7 +511,7 @@ jobs: # Important: keep -pl ... in sync with "Calculate run flags"! run: ./mvnw $COMMON_MAVEN_ARGS $JVM_TEST_MAVEN_ARGS install -pl integration-tests/gradle - name: Upload build reports (if build failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: ${{ failure() || cancelled() }} with: name: "build-reports-Gradle Tests - JDK ${{matrix.java.name}}" @@ -574,14 +574,14 @@ jobs: shell: bash run: find . -name '*-reports' -type d -o -name '*.log' | tar -czf test-reports.tgz -T - - name: Upload failure Archive (if maven failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: test-reports-devtools-java${{matrix.java.name}} path: 'test-reports.tgz' retention-days: 5 - name: Upload build reports (if build failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: ${{ failure() || cancelled() }} with: name: "build-reports-Devtools Tests - JDK ${{matrix.java.name}}" @@ -628,7 +628,7 @@ jobs: git checkout development export LANG=en_US && ./mvnw -e -B -fae --settings .github/mvn-settings.xml clean verify -DskipTests - name: Upload build reports (if build failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: ${{ failure() || cancelled() }} with: name: "build-reports-Quickstarts Compilation - JDK ${{matrix.java.name}}" @@ -681,14 +681,14 @@ jobs: shell: bash run: find . -name '*-reports' -type d -o -name '*.log' | tar -czf test-reports.tgz -T - - name: Upload failure Archive (if maven failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: test-reports-tcks path: 'test-reports.tgz' retention-days: 5 - name: Upload build reports (if build failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: ${{ failure() || cancelled() }} with: name: "build-reports-MicroProfile TCKs Tests" @@ -764,14 +764,14 @@ jobs: shell: bash run: find . -type d -name '*-reports' -o -wholename '*/build/reports/tests/functionalTest' -o -name '*.log' | tar -czf test-reports.tgz -T - - name: Upload failure Archive (if maven failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: test-reports-native-${{matrix.category}} path: 'test-reports.tgz' retention-days: 5 - name: Upload build reports (if build failed) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: ${{ failure() || cancelled() }} with: name: "build-reports-Native Tests - ${{matrix.category}}" diff --git a/.github/workflows/jdk-early-access-build.yml b/.github/workflows/jdk-early-access-build.yml index 90cb92afc1b71..4e525f96cadd1 100644 --- a/.github/workflows/jdk-early-access-build.yml +++ b/.github/workflows/jdk-early-access-build.yml @@ -122,7 +122,7 @@ jobs: shell: bash run: find . -name '*-reports' -type d -o -name '*.log' | tar -czf test-reports.tgz -T - - name: Upload failure Archive (if maven failed) - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 if: failure() with: name: test-reports-linux-jvm${{ matrix.version }}