Skip to content

Commit 0a0b70b

Browse files
committed
Bump JDK and update GHA
1 parent 2f56eac commit 0a0b70b

File tree

2 files changed

+14
-28
lines changed

2 files changed

+14
-28
lines changed

.github/workflows/workflows.yaml

Lines changed: 11 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
11
name: Tests
22

3-
on: [push]
3+
on:
4+
push:
5+
workflow_dispatch:
46

57
jobs:
68
tests:
79
runs-on: ubuntu-latest
810
strategy:
911
fail-fast: false
1012
matrix:
11-
java: [ 17 ]
13+
java: [ 21 ]
1214
kubernetes:
13-
- 'v1.24.17'
14-
- 'v1.25.15'
15-
- 'v1.26.14'
16-
- 'v1.27.11'
17-
- 'v1.28.7'
18-
- 'v1.29.2'
15+
- 'v1.30.11'
16+
- 'v1.31.7'
17+
- 'v1.32.3'
1918

2019
steps:
2120
- uses: actions/checkout@v4
2221
- name: Set up JDK
23-
uses: actions/setup-java@v1
22+
uses: actions/setup-java@v4
2423
with:
2524
java-version: ${{ matrix.java }}
2625
- name: Cache Maven packages
@@ -30,11 +29,12 @@ jobs:
3029
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
3130
restore-keys: ${{ runner.os }}-m2
3231
- name: Setup Minikube
33-
uses: manusa/actions-setup-minikube@v2.10.0
32+
uses: manusa/actions-setup-minikube@v2.13.1
3433
with:
35-
minikube version: 'v1.32.0'
34+
minikube version: 'v1.33.0'
3635
kubernetes version: ${{ matrix.kubernetes }}
3736
github token: ${{ secrets.GITHUB_TOKEN }}
37+
container runtime: containerd
3838
driver: docker
3939
- name: Pull images
4040
run: |
@@ -44,17 +44,3 @@ jobs:
4444
run: mvn -B -U clean install -DskipTests
4545
- name: Run Tests
4646
run: mvn -B test
47-
48-
# dependency:
49-
# runs-on: ubuntu-latest
50-
#
51-
# steps:
52-
# - uses: actions/checkout@v2
53-
# - name: Run Dependency Check
54-
# run: mvn -Powasp-dependency-check verify -DskipTests
55-
# - name: Archive code coverage results
56-
# uses: actions/upload-artifact@v2
57-
# with:
58-
# name: dependency-check-report
59-
# path: target/dependency-check-report.html
60-
#

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
</organization>
1717

1818
<properties>
19-
<maven.compiler.source>17</maven.compiler.source>
20-
<maven.compiler.release>17</maven.compiler.release>
21-
<maven.compiler.target>17</maven.compiler.target>
19+
<maven.compiler.source>21</maven.compiler.source>
20+
<maven.compiler.release>21</maven.compiler.release>
21+
<maven.compiler.target>21</maven.compiler.target>
2222
<kotlin.compiler.incremental>true</kotlin.compiler.incremental>
2323
<!-- Dependency versions -->
2424
<jackson.version>2.18.3</jackson.version>

0 commit comments

Comments
 (0)