Skip to content

Commit

Permalink
upgrading actions to v4 to avoid CI/CD warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed Apr 20, 2024
1 parent 74c1c02 commit 941a892
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,44 +19,46 @@ 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
runs-on: ubuntu-20.04

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:
Expand Down

0 comments on commit 941a892

Please sign in to comment.