File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change 11name : Build and Deploy Snapshot
22on :
33 push :
4- branches :
5- - master
6- - " 3.0"
7- - " 2.18"
4+ branches : [2.*]
85 paths-ignore :
96 - " README.md"
107 - " release-notes/*"
118 pull_request :
12- branches :
13- - master
14- - " 3.0"
15- - " 2.18"
9+ branches : [2.*]
1610 paths-ignore :
1711 - " README.md"
1812 - " release-notes/*"
1913jobs :
2014 build :
21- runs-on : ${{ matrix.os }}
15+ runs-on : ' ubuntu-latest '
2216 strategy :
2317 fail-fast : false
2418 matrix :
2519 java_version : ['8', '11', '17']
26- os : ['ubuntu-20.04']
2720 env :
2821 JAVA_OPTS : " -XX:+TieredCompilation -XX:TieredStopAtLevel=1"
2922 steps :
30- - uses : actions/checkout@v3
23+ - uses : actions/checkout@v4
3124 - name : Set up JDK
32- uses : actions/setup-java@v3
25+ uses : actions/setup-java@v4
3326 with :
3427 distribution : ' temurin'
3528 java-version : ${{ matrix.java_version }}
5750 run : ./mvnw -B -q -ff -ntp test
5851 - name : Publish code coverage
5952 if : github.event_name != 'pull_request' && matrix.java_version == '8'
60- uses : codecov/codecov-action@v1
53+ uses : codecov/codecov-action@v5
6154 with :
6255 token : ${{ secrets.CODECOV_TOKEN }}
6356 file : ./target/site/jacoco/jacoco.xml
You can’t perform that action at this time.
0 commit comments