Skip to content

Commit a6b5b09

Browse files
committed
update parent to 31 and java to 25
1 parent a667972 commit a6b5b09

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- name: Checkout code
8-
uses: actions/checkout@v2
8+
uses: actions/checkout@v3
99
with:
1010
submodules: recursive
1111
- name: Set up JDK
1212
uses: actions/setup-java@v3
1313
with:
14-
java-version: '21'
14+
java-version: '25'
1515
distribution: 'temurin'
1616
- name: Build project with Maven
17-
run: mvn -B -ntp install
17+
run: mvn -B -ntp -Dstyle.color=always install

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout code
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v3
1111
with:
1212
submodules: recursive
1313
- name: Set up JDK
1414
uses: actions/setup-java@v3
1515
with:
16-
java-version: '21'
16+
java-version: '25'
1717
distribution: 'temurin'
1818
- name: Build project with Maven
19-
run: mvn -B -ntp install
19+
run: mvn -B -ntp -Dstyle.color=always install
2020
- name: Deploy to OSSRH
2121
env:
2222
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
2323
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
24-
run: mvn -B -ntp --settings .mvn/settings.xml -DskipTests=true -Dmaven.install.skip=true deploy
24+
run: mvn -B -ntp -Dstyle.color=always --settings .mvn/settings.xml -DskipTests=true -Dmaven.install.skip=true deploy

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.github.m-m-m</groupId>
66
<artifactId>mmm</artifactId>
7-
<version>29</version>
7+
<version>31</version>
88
<relativePath>../parent/pom.xml</relativePath>
99
</parent>
1010
<artifactId>mmm-code-parent</artifactId>

0 commit comments

Comments
 (0)