diff --git a/.github/workflows/mod-spring-petstore.yml b/.github/workflows/mod-spring-petstore.yml index 6f77387..148dfcf 100644 --- a/.github/workflows/mod-spring-petstore.yml +++ b/.github/workflows/mod-spring-petstore.yml @@ -9,9 +9,9 @@ jobs: mod-spring-petstore: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' diff --git a/.github/workflows/simple.yml b/.github/workflows/simple.yml index e4a7faf..467e928 100644 --- a/.github/workflows/simple.yml +++ b/.github/workflows/simple.yml @@ -11,7 +11,7 @@ jobs: run: runs-on: ubuntu-latest steps: - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: '17' @@ -22,8 +22,8 @@ jobs: docker rm -f okapi OKAPI=http://`docker network inspect --format='{{range .IPAM.Config}}{{.Gateway}}{{end}}' bridge`:9130 java -Dokapiurl=$OKAPI -jar okapi-core-fat.jar dev & - - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/checkout@v4 + - uses: actions/cache@v4 with: path: ~/.m2/repository key: vertx diff --git a/hello-spring/pom.xml b/hello-spring/pom.xml index 7dd71c9..2bd51c6 100644 --- a/hello-spring/pom.xml +++ b/hello-spring/pom.xml @@ -10,7 +10,7 @@ org.springframework.boot spring-boot-starter-parent - 3.2.1 + 3.3.4 @@ -29,8 +29,8 @@ 17 - 7.3.0-SNAPSHOT - 7.1.0 + 8.2.0 + 7.9.0 diff --git a/hello-vertx/pom.xml b/hello-vertx/pom.xml index fde2fc1..0390008 100644 --- a/hello-vertx/pom.xml +++ b/hello-vertx/pom.xml @@ -26,14 +26,14 @@ io.vertx vertx-stack-depchain - 4.4.6 + 4.5.10 pom import org.apache.logging.log4j log4j-bom - 2.20.0 + 2.24.1 pom import @@ -52,7 +52,7 @@ org.folio.okapi okapi-common - 5.1.1 + 6.0.3 org.apache.logging.log4j @@ -68,7 +68,7 @@ maven-compiler-plugin - 3.11.0 + 3.13.0 17 -Xlint:unchecked @@ -135,7 +135,7 @@ org.apache.maven.plugins maven-shade-plugin - 3.5.1 + 3.6.0 package diff --git a/mod-spring-petstore/pom.xml b/mod-spring-petstore/pom.xml index 34a2df8..8f00d53 100644 --- a/mod-spring-petstore/pom.xml +++ b/mod-spring-petstore/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 3.1.4 + 3.3.4 org.folio @@ -26,13 +26,13 @@ ${project.basedir}/src/main/resources/swagger.api/petstore.yaml ${project.basedir}/src/main/resources/swagger.api/petstore-external.yaml 17 - 7.2.0 - 6.6.0 - 4.0.4 - 1.5.2.Final + 8.2.0 + 7.9.0 + 4.1.3 + 1.6.2 - 3.2.0 - 1.19.1 + 3.9.1 + 1.20.2 diff --git a/mod-spring-petstore/src/test/java/org/folio/petstore/FolioSpringTemplateApplicationTest.java b/mod-spring-petstore/src/test/java/org/folio/petstore/FolioSpringTemplateApplicationTest.java index f1d0959..edff504 100644 --- a/mod-spring-petstore/src/test/java/org/folio/petstore/FolioSpringTemplateApplicationTest.java +++ b/mod-spring-petstore/src/test/java/org/folio/petstore/FolioSpringTemplateApplicationTest.java @@ -12,7 +12,7 @@ import org.springframework.test.context.ActiveProfiles; import org.springframework.web.bind.annotation.RestController; -import javax.validation.Valid; +import jakarta.validation.Valid; import static org.junit.jupiter.api.Assertions.assertTrue; diff --git a/mod-spring-petstore/src/test/java/org/folio/petstore/context/PostgresTestContainersBeanFactoryPostProcessor.java b/mod-spring-petstore/src/test/java/org/folio/petstore/context/PostgresTestContainersBeanFactoryPostProcessor.java index fba8f99..0061fef 100644 --- a/mod-spring-petstore/src/test/java/org/folio/petstore/context/PostgresTestContainersBeanFactoryPostProcessor.java +++ b/mod-spring-petstore/src/test/java/org/folio/petstore/context/PostgresTestContainersBeanFactoryPostProcessor.java @@ -13,7 +13,7 @@ public class PostgresTestContainersBeanFactoryPostProcessor implements BeanFactoryPostProcessor { @Container - public static PostgreSQLContainer postgreDBContainer = new PostgreSQLContainer<>("postgres:11-alpine"); + public static PostgreSQLContainer postgreDBContainer = new PostgreSQLContainer<>("postgres:16-alpine"); @Override public void postProcessBeanFactory(ConfigurableListableBeanFactory configurableListableBeanFactory) throws BeansException { diff --git a/simple-vertx/pom.xml b/simple-vertx/pom.xml index 3c8282a..6d8431d 100644 --- a/simple-vertx/pom.xml +++ b/simple-vertx/pom.xml @@ -27,14 +27,14 @@ io.vertx vertx-stack-depchain - 4.4.6 + 4.5.10 pom import org.apache.logging.log4j log4j-bom - 2.20.0 + 2.24.1 pom import @@ -57,7 +57,7 @@ org.folio.okapi okapi-common - 5.1.1 + 6.0.3 org.apache.logging.log4j @@ -73,7 +73,7 @@ maven-compiler-plugin - 3.11.0 + 3.13.0 17 -Xlint:unchecked @@ -136,7 +136,7 @@ org.apache.maven.plugins maven-shade-plugin - 3.5.1 + 3.6.0 package