Skip to content

Commit 0edf91b

Browse files
committed
ci(pipelines): update
1 parent cc45bf2 commit 0edf91b

4 files changed

Lines changed: 16 additions & 3 deletions

File tree

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
strategy:
3737
matrix:
38-
java: [17, 21, 25]
38+
java: [17, 21, 25, 26]
3939
name: Java ${{ matrix.java }}
4040
steps:
4141
- name: Set REPOSITORY

.github/workflows/osv-scanner-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# For more examples and options, including how to ignore specific vulnerabilities,
1111
# see https://google.github.io/osv-scanner/github-action/
1212

13-
name: OSV-Scanner
13+
name: "OSV Scanner - PR"
1414

1515
on:
1616
pull_request:

.github/workflows/osv-scanner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# For more examples and options, including how to ignore specific vulnerabilities,
1111
# see https://google.github.io/osv-scanner/github-action/
1212

13-
name: OSV-Scanner
13+
name: OSV Scanner
1414

1515
on:
1616
push:

.gitlab-ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,16 @@ maven:jdk25:
135135
- .m2/repository
136136
script:
137137
- "./mvnw $MAVEN_CLI_OPTS -DdependencyCheck.skip=true verify"
138+
139+
maven:jdk26:
140+
stage: build
141+
image:
142+
name: maven:3-eclipse-temurin-26-alpine
143+
entrypoint:
144+
- "" # Entrypoint is overridden by GitLab anyway
145+
cache:
146+
key: maven
147+
paths:
148+
- .m2/repository
149+
script:
150+
- "./mvnw $MAVEN_CLI_OPTS -DdependencyCheck.skip=true verify"

0 commit comments

Comments
 (0)