From 0733535530aae76cf0b212b0f91387121e1f2c2d Mon Sep 17 00:00:00 2001 From: Andrus Adamchik Date: Sat, 20 Apr 2024 19:27:36 -0400 Subject: [PATCH] upgrading actions to v4 to avoid CI/CD warnings --- .github/workflows/maven.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 2271d71..b177f16 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -14,15 +14,16 @@ jobs: steps: - name: Checkout... - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up JDK... - uses: actions/setup-java@v1 + uses: actions/setup-java@v4 with: java-version: ${{ matrix.java }} + distribution: 'temurin' - name: Retrieve mvn repo cache... - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-build-v1 @@ -37,21 +38,22 @@ jobs: steps: - name: Checkout... - uses: actions/checkout@v2 + uses: actions/checkout@v4 # this action exports env.POM_VERSION variable - name: Export Maven coordinates... uses: bootique-tools/export-maven-coordinates-action@v1 - name: Set up JDK... - uses: actions/setup-java@v1 + uses: actions/setup-java@v4 # skip this for the release versions if: contains(env.POM_VERSION, '-SNAPSHOT') with: java-version: 11 + distribution: 'temurin' - name: Retrieve mvn repo cache... - uses: actions/cache@v2 + uses: actions/cache@v4 # skip this for the release versions if: contains(env.POM_VERSION, '-SNAPSHOT') with: