Skip to content

Commit 6f02e05

Browse files
committed
github actions refreshed
1 parent 4d7f3d0 commit 6f02e05

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

.github/workflows/codecov.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-java@v3
1313
with:
14+
distribution: 'temurin'
1415
java-version: 11
1516
- uses: actions/cache@v3
1617
with:
@@ -19,7 +20,7 @@ jobs:
1920
restore-keys: |
2021
maven-
2122
- run: mvn install -Pjacoco
22-
- uses: codecov/codecov-action@v1
23+
- uses: codecov/codecov-action@v3
2324
with:
2425
file: ./target/site/jacoco/jacoco.xml
2526
fail_ci_if_error: true

.github/workflows/mvn.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,20 @@ on:
55
branches:
66
- master
77
pull_request:
8+
branches:
9+
- master
810
jobs:
9-
maven-build:
11+
mvn:
1012
runs-on: ${{ matrix.os }}
1113
strategy:
1214
matrix:
1315
os: [ubuntu-20.04, windows-2022, macos-12]
14-
java: [11, 13]
16+
java: [11, 17]
1517
steps:
1618
- uses: actions/checkout@v3
1719
- uses: actions/setup-java@v3
1820
with:
21+
distribution: 'temurin'
1922
java-version: ${{ matrix.java }}
2023
- uses: actions/cache@v3
2124
with:

.github/workflows/pdd.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
name: pdd
33
on:
44
push:
5+
branches:
6+
- master
57
pull_request:
8+
branches:
9+
- master
610
jobs:
711
pdd:
812
runs-on: ubuntu-20.04

.github/workflows/xcop.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
name: xcop
33
on:
44
push:
5+
branches:
6+
- master
57
pull_request:
8+
branches:
9+
- master
610
jobs:
711
xcop:
812
runs-on: ubuntu-20.04

0 commit comments

Comments
 (0)