Skip to content

Commit 8256d8d

Browse files
committed
Merge branch '4.1.x' into 4.2.x
2 parents 47d96a0 + 875e1dc commit 8256d8d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/maven.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@ name: Build
55

66
on:
77
push:
8-
branches: [ main, 3.1.x ]
8+
branches: [ main, 4.2.x, 4.1.x, 4.0.x, 3.1.x ]
99
pull_request:
10-
branches: [ main, 3.1.x ]
10+
branches: [ main, 4.2.x, 4.1.x, 4.0.x, 3.1.x ]
1111

1212
jobs:
1313
build:
1414

1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919
- name: Set up JDK
20-
uses: actions/setup-java@v2
20+
uses: actions/setup-java@v4
2121
with:
2222
distribution: 'temurin'
2323
java-version: '17'
2424
- name: Cache local Maven repository
25-
uses: actions/cache@v2
25+
uses: actions/cache@v4
2626
with:
2727
path: ~/.m2/repository
2828
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -31,7 +31,7 @@ jobs:
3131
- name: Build with Maven
3232
run: ./mvnw clean install -B -U -Pspring -Dmaven.test.redirectTestOutputToFile=true
3333
- name: Publish Test Report
34-
uses: mikepenz/action-junit-report@v2
34+
uses: mikepenz/action-junit-report@v5
3535
if: always() # always run even if the previous step fails
3636
with:
37-
report_paths: '**/surefire-reports/TEST-*.xml'
37+
report_paths: '**/surefire-reports/TEST-*.xml'

0 commit comments

Comments
 (0)