Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

services:
mariadb:
image: mariadb:11.5.2
image: mariadb:11.8.6
ports:
- 3306:3306
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

services:
mysql:
image: mysql:9.1
image: mysql:9.6
ports:
- 3306:3306
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-postgresql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

services:
postgresql:
image: postgres:17.4
image: postgres:17.7
ports:
- 5432:5432
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/liquibase-only-postgresql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

services:
postgresql:
image: postgres:17.4
image: postgres:17.7
ports:
- 5432:5432
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

services:
postgresql:
image: postgres:17.4
image: postgres:17.7
ports:
- 5432:5432
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

services:
postgresql:
image: postgres:17.4
image: postgres:17.7
ports:
- 5432:5432
env:
Expand Down
28 changes: 14 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,28 +97,28 @@ buildscript {

plugins {
id 'me.qoomon.git-versioning' version '6.4.4'
id "org.barfuin.gradle.taskinfo" version "2.2.0"
id "org.barfuin.gradle.taskinfo" version "2.2.1"
id 'com.adarshr.test-logger' version '4.0.0'
id 'com.diffplug.spotless' version '6.25.0' apply false
id 'org.nosphere.apache.rat' version '0.8.1' apply false
id 'com.github.hierynomus.license' version '0.16.1' apply false
id 'com.github.jk1.dependency-license-report' version '2.9' apply false
id 'org.zeroturnaround.gradle.jrebel' version '1.2.0' apply false
id 'org.springframework.boot' version '3.5.6' apply false
id 'net.ltgt.errorprone' version '4.1.0' apply false
id 'io.swagger.core.v3.swagger-gradle-plugin' version '2.2.23' apply false
id 'com.gorylenko.gradle-git-properties' version '2.4.2' apply false
id 'org.zeroturnaround.gradle.jrebel' version '1.2.2' apply false
id 'org.springframework.boot' version '3.5.10' apply false
id 'net.ltgt.errorprone' version '4.4.0' apply false
id 'io.swagger.core.v3.swagger-gradle-plugin' version '2.2.42' apply false
id 'com.gorylenko.gradle-git-properties' version '2.5.7' apply false
id 'org.asciidoctor.jvm.convert' version '4.0.5' apply false
id 'org.asciidoctor.jvm.pdf' version '4.0.5' apply false
id 'com.google.cloud.tools.jib' version '3.4.5' apply false
id 'org.sonarqube' version '6.0.1.5171'
id 'com.github.andygoossens.modernizer' version '1.10.0' apply false
id 'com.github.spotbugs' version '6.0.26' apply false
id 'se.thinkcode.cucumber-runner' version '0.0.11' apply false
id 'com.google.cloud.tools.jib' version '3.5.3' apply false
id 'org.sonarqube' version '6.3.1.5724'
id 'com.github.andygoossens.modernizer' version '1.12.0' apply false
id 'com.github.spotbugs' version '6.4.8' apply false
id 'se.thinkcode.cucumber-runner' version '0.0.13' apply false
id "com.github.davidmc24.gradle.plugin.avro-base" version "1.9.1" apply false
id 'org.openapi.generator' version '7.8.0' apply false
id 'com.gradleup.shadow' version '8.3.5' apply false
id 'me.champeau.jmh' version '0.7.1' apply false
id 'org.openapi.generator' version '7.19.0' apply false
id 'com.gradleup.shadow' version '8.3.9' apply false
id 'me.champeau.jmh' version '0.7.3' apply false
id 'org.cyclonedx.bom' version '3.1.0' apply false
}

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ configurations.all {
resolutionStrategy {
dependencySubstitution {
// Substitution is to resolve CVE-2025-12183
substitute module('org.lz4:lz4-java') using module('at.yawk.lz4:lz4-java:1.10.1')
substitute module('org.lz4:lz4-java') using module('at.yawk.lz4:lz4-java:1.10.3')
}
}
}
Expand Down
Loading