From fded708267b24fad24f255719b3492c39eec9d0b Mon Sep 17 00:00:00 2001 From: David Kornel Date: Mon, 28 Apr 2025 09:06:10 +0200 Subject: [PATCH] Update pusblish snapshot workflow actions Signed-off-by: David Kornel --- .github/workflows/publish_snapshot.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish_snapshot.yml b/.github/workflows/publish_snapshot.yml index bbdc14faed..9a6c67603a 100644 --- a/.github/workflows/publish_snapshot.yml +++ b/.github/workflows/publish_snapshot.yml @@ -28,16 +28,16 @@ jobs: if: github.repository == 'apache/flink-kubernetes-operator' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: main - name: Set up JDK 11 - uses: actions/setup-java@v2 + uses: actions/setup-java@v4 with: java-version: '11' - distribution: 'adopt' + distribution: 'temurin' - name: Cache local Maven repository - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository key: snapshot-maven-${{ hashFiles('**/pom.xml') }}