We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d064fe6 commit 9a10f53Copy full SHA for 9a10f53
2 files changed
.github/workflows/build.yaml
@@ -15,14 +15,14 @@ jobs:
15
runs-on: ubuntu-latest
16
17
steps:
18
- - uses: actions/checkout@3
+ - uses: actions/checkout@5
19
with:
20
ref: ${{ github.ref }}
21
- - name: Set up JDK 1.8
22
- uses: actions/setup-java@v3
+ - name: Set up JDK 11
+ uses: actions/setup-java@v5
23
24
- java-version: 8.0
25
- distribution: 'adopt'
+ java-version: 11
+ distribution: 'zulu'
26
architecture: x64
27
- name: Build with Maven
28
run: mvn -B package --file pom.xml
Changelog.md
@@ -4,6 +4,7 @@
4
- 2025-10-21
5
- Bump required java version from 8 to 11+ (Thanks to kindlich)
6
- Make connection autoclosable (thanks to raboof)
7
+ - Bump pom.xml dependencies where possible
8
9
## Version 13.0.2
10
- 2024-03-16
0 commit comments