From 941a89271fa1ddb4f37f173c8e4f773020781702 Mon Sep 17 00:00:00 2001 From: Andrus Adamchik Date: Sat, 20 Apr 2024 19:49:00 -0400 Subject: [PATCH] upgrading actions to v4 to avoid CI/CD warnings --- .github/workflows/maven.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 8b41f31..0de66d0 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -19,22 +19,23 @@ 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 restore-keys: ${{ runner.os }}-maven - name: Build and test... - run: mvn clean verify ${{ matrix.mvn-profile }} + run: mvn clean verify -U ${{ matrix.mvn-profile }} deploy: needs: build @@ -42,21 +43,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: