File tree Expand file tree Collapse file tree 7 files changed +28
-14
lines changed Expand file tree Collapse file tree 7 files changed +28
-14
lines changed Original file line number Diff line number Diff line change @@ -17,16 +17,27 @@ jobs:
1717 - " temurin"
1818
1919 steps :
20- - uses : actions/checkout@v3
20+ - uses : actions/checkout@v4
2121 with :
2222 submodules : recursive
2323
24+ # We need the GPG key to sign the package.
25+ - id : install-secret-key
26+ name : Install GPG secret key
27+ run : |
28+ cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | gpg --batch --import
29+ gpg --list-secret-keys --keyid-format LONG
30+
2431 - name : Set up JDK ${{ matrix.java-version }}
25- uses : actions/setup-java@v3
32+ uses : actions/setup-java@v4
2633 with :
2734 java-version : ${{ matrix.java-version }}
2835 distribution : ${{ matrix.distribution }}
2936 cache : " maven"
3037
38+ # We build in "release" mode to test the documentation.
3139 - name : Verify with Maven
32- run : mvn --update-snapshots --no-transfer-progress verify
40+ run : |
41+ mvn --update-snapshots --no-transfer-progress \
42+ -Dgpg.passphrase=${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} \
43+ verify -P release
Original file line number Diff line number Diff line change 1- name : Checks
1+ name : Check Style
22
33on :
44 - push
88 name : Check Code Style
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v3
11+ - uses : actions/checkout@v4
1212 with :
1313 submodules : recursive
1414
15- - name : Set up JDK 11
16- uses : actions/setup-java@v3
15+ - name : Set up JDK
16+ uses : actions/setup-java@v4
1717 with :
18- java-version : 11
18+ java-version : " 11 "
1919 distribution : " temurin"
2020 cache : " maven"
2121
Original file line number Diff line number Diff line change 3838
3939 steps :
4040 - name : Checkout repository
41- uses : actions/checkout@v3
41+ uses : actions/checkout@v4
4242
4343 # Initializes the CodeQL tools for scanning.
4444 - name : Initialize CodeQL
Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ jobs:
1212 name : Publish Documentation
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@v3
15+ - uses : actions/checkout@v4
1616 with :
1717 submodules : recursive
1818
19- - name : Set up JDK 11
20- uses : actions/setup-java@v3
19+ - name : Set up JDK
20+ uses : actions/setup-java@v4
2121 with :
2222 java-version : " 11"
2323 distribution : " temurin"
Original file line number Diff line number Diff line change 1414 - uses : actions/checkout@v4
1515 with :
1616 submodules : recursive
17+
18+ # We need the GPG key to sign the package.
1719 - id : install-secret-key
1820 name : Install GPG secret key
1921 run : |
Original file line number Diff line number Diff line change 1515 max-parallel : 2
1616 matrix :
1717 java-version :
18+ - " 21"
1819 - " 17"
1920 - " 11"
2021 - " 8"
Original file line number Diff line number Diff line change 9090 <plugin >
9191 <artifactId >maven-compiler-plugin</artifactId >
9292 <groupId >org.apache.maven.plugins</groupId >
93- <version >3.10 .1</version >
93+ <version >3.12 .1</version >
9494 <configuration >
9595 <annotationProcessorPaths >
9696 <path >
341341 <org .mapstruct.version>1.5.3.Final</org .mapstruct.version>
342342 <org .projectlombok.lombok-mapstruct-binding.version>0.2.0
343343 </org .projectlombok.lombok-mapstruct-binding.version>
344- <org .projectlombok.version>1.18.26 </org .projectlombok.version>
344+ <org .projectlombok.version>1.18.30 </org .projectlombok.version>
345345 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
346346 <wiremock .version>2.27.2</wiremock .version>
347347 </properties >
You can’t perform that action at this time.
0 commit comments