diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 719ef568..b1185ba1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,14 +13,14 @@ jobs: matrix: java: [17] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: check-latest: true distribution: temurin java-version: ${{ matrix.java }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 env: cache-name: cache-maven-artifacts with: @@ -38,8 +38,8 @@ jobs: runs-on: ubuntu-24.04 needs: build steps: - - uses: actions/checkout@v3 - - uses: actions/cache@v3 + - uses: actions/checkout@v4 + - uses: actions/cache@v4 env: cache-name: cache-maven-artifacts with: @@ -52,7 +52,7 @@ jobs: # Publish snapshot - name: Set up JDK 17 for publishing a snapshot if: github.event_name == 'push' && endswith(env.PROJECT_VERSION, 'SNAPSHOT') - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: check-latest: true distribution: temurin @@ -69,7 +69,7 @@ jobs: # Publish release - name: Set up JDK 17 for publishing a release if: github.event_name == 'release' && !endswith(env.PROJECT_VERSION, 'SNAPSHOT') - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: gpg-passphrase: MAVEN_GPG_PASSPHRASE gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} diff --git a/docker-compose.yml b/docker-compose.yml index 46239eb7..25f93bdf 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '3' services: rabbitmq: - image: rabbitmq:3-management-alpine + image: rabbitmq:4-management-alpine ports: - "5672:5672" - "15672:15672" diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index aae4987a..e73661ce 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -64,25 +64,25 @@ org.testcontainers testcontainers - 1.20.1 + 1.20.4 test org.testcontainers junit-jupiter - 1.20.1 + 1.20.4 test org.testcontainers rabbitmq - 1.20.1 + 1.20.4 test org.testcontainers toxiproxy - 1.20.1 + 1.20.4 diff --git a/pom.xml b/pom.xml index e0272eb1..bf91b78f 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 3.1.6 + 3.4.0 @@ -76,7 +76,7 @@ com.rabbitmq amqp-client - 5.21.0 + 5.23.0 com.github.dbmdz.flusswerk @@ -86,18 +86,18 @@ net.logstash.logback logstash-logback-encoder - 7.4 + 8.0 org.mockito mockito-core - 5.13.0 + 5.14.2 test org.junit.jupiter junit-jupiter - 5.11.0 + 5.11.3 test @@ -113,7 +113,7 @@ com.spotify.fmt fmt-maven-plugin - 2.24 + 2.25 @@ -150,7 +150,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.10.0 + 3.11.1 org.apache.maven.plugins @@ -168,7 +168,7 @@ com.spotify.fmt fmt-maven-plugin - 2.24 + 2.25 org.codehaus.mojo @@ -271,7 +271,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.2.5 + 3.2.7 sign-artifacts