From 60940d2c4f07f5121b2003e22953cc3a98cbbf18 Mon Sep 17 00:00:00 2001 From: Kevin Wallimann Date: Tue, 27 May 2025 10:44:04 +0200 Subject: [PATCH 1/2] Update action versions --- .github/workflows/build.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2433e22b..61b883c7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build +name: Build3 on: pull_request: @@ -17,12 +17,15 @@ jobs: spark: 3 name: Scala ${{ matrix.scala }}, Spark ${{ matrix.spark }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 + with: + persist-credentials: false - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + uses: actions/setup-java@v2 with: - java-version: 1.8 - - uses: actions/cache@v2 + distribution: 'adopt' + java-version: 8 + - uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-${{ matrix.scala }}-${{ matrix.spark }}-${{ hashFiles('**/pom.xml') }} From 7df80820ce6132cb2656c7056c7c7d566113718e Mon Sep 17 00:00:00 2001 From: Kevin Wallimann Date: Tue, 27 May 2025 10:55:27 +0200 Subject: [PATCH 2/2] Rename workflow --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 61b883c7..724c73be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build3 +name: Build on: pull_request: