We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d1671a + cd55db8 commit acc4021Copy full SHA for acc4021
1 file changed
.github/workflows/onpush.yml
@@ -11,15 +11,21 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - uses: actions/checkout@v3
+ - name: Checkout repository
15
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
16
- name: Set up JDK 11
- uses: actions/setup-java@v3
17
+ uses: actions/setup-java@v5
18
with:
- distribution: 'adopt'
19
+ distribution: 'temurin'
20
java-version: 11
21
+ cache: 'maven'
22
- name: Build & Install checkstyle-config
- run: cd checkstyle-config && mvn -B clean install && cd ..
23
+ run: mvn -B clean install
24
+ working-directory: checkstyle-config
25
+
26
- name: Build root
27
run: mvn -B clean verify
28
29
- name: Test lint
- run: cd test && mvn -B -P lint clean verify
30
+ run: mvn -B -P lint clean verify
31
+ working-directory: test
0 commit comments