Skip to content

Commit 0660a89

Browse files
update dependencies
1 parent 5c9f7f9 commit 0660a89

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,21 @@ on: [push, pull_request]
55
jobs:
66
test:
77
runs-on: ubuntu-latest
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
# Build/test across the JDK range the library supports (Java 8 floor).
12+
java-version: ['8', '11', '17', '21']
13+
name: Test (JDK ${{ matrix.java-version }})
814
steps:
915
- name: Clone Repository
1016
uses: actions/checkout@v6
1117
- uses: actions/setup-java@v5
1218
with:
1319
distribution: 'temurin'
14-
java-version: '11'
20+
java-version: ${{ matrix.java-version }}
1521
- name: Test
1622
run: mvn install -Dgpg.skip=true -B -V
1723
env:
1824
TB_KEY: ${{ secrets.TB_KEY }}
19-
TB_SECRET: ${{ secrets.TB_SECRET }}
25+
TB_SECRET: ${{ secrets.TB_SECRET }}

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@
151151
<artifactId>maven-compiler-plugin</artifactId>
152152
<version>3.15.0</version>
153153
<configuration>
154-
<source>1.7</source>
155-
<target>1.7</target>
154+
<source>1.8</source>
155+
<target>1.8</target>
156156
</configuration>
157157
</plugin>
158158
<plugin>

0 commit comments

Comments
 (0)