From 98e3200b69f748040537ce4a1352f324d232b304 Mon Sep 17 00:00:00 2001 From: Peter Kriens Date: Wed, 24 Jan 2024 08:57:16 +0100 Subject: [PATCH] Dependency bot does not get the action/upload version bumped --- Signed-off-by: Peter Kriens Signed-off-by: Peter Kriens --- .github/workflows/cibuild.yml | 2 +- .github/workflows/rebuild.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index 045e4d0b83..716602127c 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -102,7 +102,7 @@ jobs: JFROG_PASSWORD: ${{ secrets.JFROG_PASSWORD }} - name: Upload Test Reports if: ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }} - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 + uses: actions/upload-artifact@v4 with: name: Build_JDK${{ matrix.java }}_${{ matrix.os }}-test-reports path: | diff --git a/.github/workflows/rebuild.yml b/.github/workflows/rebuild.yml index 71431b8805..b3118654b9 100644 --- a/.github/workflows/rebuild.yml +++ b/.github/workflows/rebuild.yml @@ -72,7 +72,7 @@ jobs: run: | ./.github/scripts/rebuild-build.sh - name: Upload dist/bundles - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 + uses: actions/upload-artifact@v4 with: name: Dist_Bundles_JDK${{ matrix.java }}_${{ matrix.os }} if-no-files-found: error @@ -110,7 +110,7 @@ jobs: - name: Set up Gradle uses: gradle/gradle-build-action@982da8e78c05368c70dac0351bb82647a9e9a5d2 - name: Download dist/bundles - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a + uses: actions/download-artifact@v4 with: name: ${{ needs.build.outputs.dist-bundles }} path: dist/bundles @@ -120,7 +120,7 @@ jobs: ${{ format(matrix.runner, './.github/scripts/rebuild-test.sh') }} - name: Upload Test Reports if: ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }} - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 + uses: actions/upload-artifact@v4 with: name: Rebuild_JDK${{ matrix.java }}_${{ matrix.os }}-test-reports path: |