We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 29cd918 + 1a0c586 commit e797ae8Copy full SHA for e797ae8
1 file changed
.github/workflows/deployment.yml
@@ -11,18 +11,13 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
15
- name: Set up JDK 11
16
- uses: actions/setup-java@v2
+ uses: actions/setup-java@v3
17
with:
18
distribution: 'adopt' # See 'Supported distributions' for available options
19
java-version: '11'
20
- - name: Cache Maven packages
21
- uses: actions/cache@v2
22
- with:
23
- path: ~/.m2
24
- key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
25
- restore-keys: ${{ runner.os }}-m2
+ cache: 'maven'
26
- name: Build with Maven
27
run: mvn test -DforkMode=always --fail-at-end --batch-mode -Dmatsim.preferLocalDtds=true
28
0 commit comments