File tree Expand file tree Collapse file tree 9 files changed +29
-19
lines changed
Expand file tree Collapse file tree 9 files changed +29
-19
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ jobs:
1919
2020 steps :
2121 - name : Checkout repository
22- uses : actions/checkout@v5
22+ uses : actions/checkout@v6
2323
24- - uses : actions/setup-java@v4
24+ - uses : actions/setup-java@v5
2525 with :
2626 distribution : temurin
27- java-version : ' 21 '
27+ java-version : ' 25 '
2828 cache : gradle
2929
3030 - name : Run Spotless
@@ -37,12 +37,12 @@ jobs:
3737
3838 steps :
3939 - name : Checkout code
40- uses : actions/checkout@v5
40+ uses : actions/checkout@v6
4141
42- - uses : actions/setup-java@v4
42+ - uses : actions/setup-java@v5
4343 with :
4444 distribution : temurin
45- java-version : ' 21 '
45+ java-version : ' 25 '
4646 cache : gradle
4747
4848 - name : Build emails
5959
6060 - name : Store report
6161 if : ${{ failure() }}
62- uses : actions/upload-artifact@v4
62+ uses : actions/upload-artifact@v6
6363 with :
6464 name : Report
6565 path : build/reports/tests/test
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ COPY . ./
77RUN make emails
88
99
10- FROM eclipse-temurin:21 -jdk AS build-code
10+ FROM eclipse-temurin:25 -jdk AS build-code
1111
1212ARG APP_STORAGE_TYPE
1313ENV APP_STORAGE_TYPE=$APP_STORAGE_TYPE
@@ -20,7 +20,7 @@ RUN git fetch --unshallow || echo "Nothing to do"
2020RUN ./gradlew --no-daemon --exclude-task test build
2121
2222
23- FROM eclipse-temurin:21 -jre AS run
23+ FROM eclipse-temurin:25 -jre AS run
2424
2525ENV LANGUAGE="en_US:en"
2626ENV JAVA_OPTS="$JAVA_OPTS -Dquarkus.http.host=0.0.0.0"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ COPY . ./
77RUN make emails
88
99
10- FROM ghcr.io/graalvm/native-image-community:21 -muslib AS build-code
10+ FROM ghcr.io/graalvm/native-image-community:25 -muslib AS build-code
1111
1212ARG APP_STORAGE_TYPE
1313ENV APP_STORAGE_TYPE=$APP_STORAGE_TYPE
Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ dependencies {
6969}
7070
7171java {
72- sourceCompatibility = JavaVersion . VERSION_21
73- targetCompatibility = JavaVersion . VERSION_21
72+ sourceCompatibility = JavaVersion . VERSION_25
73+ targetCompatibility = JavaVersion . VERSION_25
7474}
7575
7676test {
Original file line number Diff line number Diff line change 11org.gradle.jvmargs =-Xmx1024M
2- quarkusPlatformVersion =3.30 .1
3- quarkusPluginVersion =3.30 .1
4- sentryVersion =8.27.1
2+ quarkusPlatformVersion =3.32 .1
3+ quarkusPluginVersion =3.32 .1
4+ sentryVersion =8.33.0
55javaXtVersion =2.1.11
6- twelveMonkeysVersion =3.12 .0
7- spotlessPluginVersion =8.1.0
8- lombokPluginVersion =9.1 .0
6+ twelveMonkeysVersion =3.13 .0
7+ spotlessPluginVersion =8.2.1
8+ lombokPluginVersion =9.2 .0
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-9.2 .1-bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-9.3 .1-bin.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -13,3 +13,8 @@ dependencies {
1313 implementation(" io.sentry:sentry-opentelemetry-bootstrap" )
1414 implementation(project(" :quarkus-sentry:runtime" ))
1515}
16+
17+ java {
18+ sourceCompatibility = JavaVersion . VERSION_25
19+ targetCompatibility = JavaVersion . VERSION_25
20+ }
Original file line number Diff line number Diff line change @@ -14,3 +14,8 @@ dependencies {
1414 implementation(" io.sentry:sentry-jul" )
1515 implementation(" io.sentry:sentry-opentelemetry-agentless" )
1616}
17+
18+ java {
19+ sourceCompatibility = JavaVersion . VERSION_25
20+ targetCompatibility = JavaVersion . VERSION_25
21+ }
You can’t perform that action at this time.
0 commit comments