Skip to content

Commit

Permalink
Upgrade actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
VanRoy committed Nov 17, 2021
1 parent 3d4626c commit 8aefa0f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,20 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/cache@v2.1.6
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'temurin'
java-version: '11'
- name: Build with Maven
run: ./mvnw -B clean verify javadoc:javadoc --file pom.xml
- name: Sonar Analysis
Expand Down

0 comments on commit 8aefa0f

Please sign in to comment.