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 9fa2d44 commit abf9534Copy full SHA for abf9534
.github/workflows/java-pr-check.yml
@@ -16,14 +16,15 @@ jobs:
16
steps:
17
- uses: actions/checkout@v4
18
19
- - name: Set up JDK 8
+ - name: Set up JDK 17
20
uses: actions/setup-java@v4
21
with:
22
- java-version: '8'
23
- distribution: 'adopt'
24
-
+ java-version: '17'
+ distribution: 'temurin'
+ cache: maven
25
- name: Build with Maven
26
- run: mvn clean install
+ run: mvn -B package --file pom.xml
27
28
- - name: Run tests
29
- run: mvn test
+ # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
+ - name: Update dependency graph
30
+ uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
0 commit comments