Skip to content

Commit

Permalink
Updated github action.
Browse files Browse the repository at this point in the history
  • Loading branch information
ylussaud committed Mar 15, 2024
1 parent 84a1ae2 commit e398ea3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ jobs:
echo GITHUB_REF $GITHUB_REF
echo GITHUB_SHA $GITHUB_SHA
echo GITHUB_EVENT_NAME $GITHUB_EVENT_NAME
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4.2.0
with:
distribution: 'adopt'
java-version: 17
- uses: actions/cache@v3
- uses: actions/cache@v4.0.1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- name: Build with Maven
run: mvn clean verify -e -Dgpg.skip=true -Dmaven.wagon.provider.http=httpclient -Dmaven.artifact.threads=12 -Dhttp.tcp.nodelay=false
Expand Down

0 comments on commit e398ea3

Please sign in to comment.