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.
1 parent 50def02 commit 5679457Copy full SHA for 5679457
.github/workflows/build.yaml
@@ -23,18 +23,13 @@ jobs:
23
with:
24
chromedriver-version: '107.0.5304.62'
25
- run: which chromedriver
26
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
27
- name: Set up JDK 11
28
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v4
29
30
java-version: 11
31
-
32
- - name: Cache Maven packages
33
- uses: actions/cache@v2
34
- with:
35
- path: ~/.m2
36
- key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
37
- restore-keys: ${{ runner.os }}-m2
+ distribution: 'temurin'
+ cache: 'maven'
38
39
- name: Compile and test
40
run: mvn -B --update-snapshots compile test -Dwebdriver.chrome.driver=/usr/local/bin/chromedriver -Dwebdriver.chrome.browser=`which chrome`
0 commit comments