Skip to content

Commit d8effa6

Browse files
committed
Merge branch 'dependencies-update-spring' into dependencies-update
2 parents bea17a3 + ca45f9b commit d8effa6

28 files changed

Lines changed: 125 additions & 75 deletions

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# From https://github.com/microsoft/vscode-dev-containers/blob/master/containers/go/.devcontainer/Dockerfile
2-
ARG VARIANT="21-jdk-bookworm"
2+
ARG VARIANT="25-jdk-trixie"
33
FROM mcr.microsoft.com/vscode/devcontainers/java:${VARIANT}

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"dockerfile": "Dockerfile",
66
"args": {
77
// Update the VARIANT arg to pick a version of Java
8-
"VARIANT": "21-jdk-bookworm",
8+
"VARIANT": "25-jdk-trixie",
99
}
1010
},
1111
"containerEnv": {

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
uses: actions/setup-java@v5
3535
with:
3636
distribution: 'temurin'
37-
java-version: 21
37+
java-version: 25
3838

3939
- name: Cache Maven packages
4040
uses: actions/cache@v5
@@ -52,7 +52,7 @@ jobs:
5252

5353
- name: Build with Maven
5454
if: matrix.build-mode == 'manual'
55-
run: mvn -B package --file extra/pom.xml
55+
run: mvn -B clean package -DskipUnitTests --file extra/pom.xml
5656

5757
- name: Perform CodeQL Analysis
5858
uses: github/codeql-action/analyze@v4

.github/workflows/docker-image-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
java: [ 21 ]
22+
java: [ 25 ]
2323
dockerfile-path: [ Dockerfile, Dockerfile-modules ]
2424
include:
2525
- dockerfile-path: Dockerfile

.github/workflows/pr-functional-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
strategy:
2424
matrix:
25-
java: [ 21 ]
25+
java: [ 25 ]
2626

2727
steps:
2828
- uses: actions/checkout@v5

.github/workflows/pr-java-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
strategy:
2424
matrix:
25-
java: [ 21 ]
25+
java: [ 25 ]
2626

2727
steps:
2828
- uses: actions/checkout@v5

.github/workflows/pr-module-functional-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
strategy:
2424
matrix:
25-
java: [ 21 ]
25+
java: [ 25 ]
2626

2727
steps:
2828
- uses: actions/checkout@v5

.github/workflows/release-asset-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
java: [ 21 ]
15+
java: [ 25 ]
1616
steps:
1717
- uses: actions/checkout@v5
1818
- name: Set up JDK

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM amazoncorretto:21.0.8-al2023
1+
FROM amazoncorretto:25.0.3-al2023-headless
22

33
WORKDIR /app/prebid-server
44

Dockerfile-modules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM amazoncorretto:21.0.8-al2023
1+
FROM amazoncorretto:25.0.3-al2023-headless
22

33
WORKDIR /app/prebid-server
44

0 commit comments

Comments
 (0)