Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 22, 2024
1 parent c6d86df commit b43810b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
rabbitmq:
image: rabbitmq:3-management-alpine
image: rabbitmq:4-management-alpine
ports:
- "5672:5672"
- "15672:15672"
8 changes: 4 additions & 4 deletions integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,25 +64,25 @@
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>1.20.1</version>
<version>1.20.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>1.20.1</version>
<version>1.20.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>rabbitmq</artifactId>
<version>1.20.1</version>
<version>1.20.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>toxiproxy</artifactId>
<version>1.20.1</version>
<version>1.20.4</version>
</dependency>
</dependencies>

Expand Down
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.6</version>
<version>3.4.0</version>
</parent>

<description>
Expand Down Expand Up @@ -76,7 +76,7 @@
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>5.21.0</version>
<version>5.23.0</version>
</dependency>
<dependency>
<groupId>com.github.dbmdz.flusswerk</groupId>
Expand All @@ -86,18 +86,18 @@
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
<version>7.4</version>
<version>8.0</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.13.0</version>
<version>5.14.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.11.0</version>
<version>5.11.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -113,7 +113,7 @@
<plugin>
<groupId>com.spotify.fmt</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>2.24</version>
<version>2.25</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -150,7 +150,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.0</version>
<version>3.11.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -168,7 +168,7 @@
<plugin>
<groupId>com.spotify.fmt</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>2.24</version>
<version>2.25</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down Expand Up @@ -271,7 +271,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.5</version>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down

0 comments on commit b43810b

Please sign in to comment.