From 322366ed8578394b9348d237cfbe8fa9cc8d7ea5 Mon Sep 17 00:00:00 2001 From: Tobias Bouschen Date: Tue, 27 Feb 2024 20:50:16 +0100 Subject: [PATCH] Update GitHub Action versions --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b315cd04..db9cb2e0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 - name: Check Format @@ -57,12 +57,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 - name: Setup java - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: # specifies the OpenJdk that should be used; 'zulu' is the default for GitHub actions distribution: 'zulu' @@ -76,7 +76,7 @@ jobs: # Exports the TCK logs in case the build fails - name: Export TCK logs if: ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: tck-logs-jdk-${{ matrix.java }} retention-days: 14