Skip to content

Commit c33627b

Browse files
authored
Add setup Maven v3.9.6 action step in the build workflow (#451)
1 parent d43a30f commit c33627b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222

23+
- name: Set up Maven
24+
uses: stCarolas/setup-maven@v5
25+
with:
26+
maven-version: 3.9.6
27+
2328
- name: Set up JDK ${{ matrix.java }}
2429
uses: actions/setup-java@v4
2530
with:
@@ -28,7 +33,7 @@ jobs:
2833
cache: maven
2934

3035
- name: Build with Maven
31-
run: mvn -B -q -ntp install
36+
run: mvn --show-version -B -q -ntp install
3237

3338
- name: Upload coverage to Codecov
3439
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)