Skip to content

Commit 621b8df

Browse files
committed
Use RabbitMQ 3.12 in CI
1 parent 86827c2 commit 621b8df

8 files changed

+4
-14
lines changed

.github/workflows/test-native-image.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ on:
55
- cron: '0 4 * * *'
66
workflow_dispatch:
77

8-
env:
9-
RABBITMQ_IMAGE: 'rabbitmq:3.11'
10-
118
jobs:
129
build:
1310
runs-on: ubuntu-22.04

.github/workflows/test-pr.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ on:
55
branches:
66
- main
77

8-
env:
9-
RABBITMQ_IMAGE: 'rabbitmq:3.11'
10-
118
jobs:
129
build:
1310
runs-on: ubuntu-22.04

.github/workflows/test-rabbitmq-alphas.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
strategy:
1515
matrix:
16-
rabbitmq-image: [ 'pivotalrabbitmq/rabbitmq:v3.11.x-otp-max-bazel', 'pivotalrabbitmq/rabbitmq:v3.12.x-otp-max-bazel' ]
16+
rabbitmq-image: [ 'pivotalrabbitmq/rabbitmq:v3.12.x-otp-max-bazel', 'pivotalrabbitmq/rabbitmq:main-otp-max-bazel' ]
1717
name: Test against ${{ matrix.rabbitmq-image }}
1818
steps:
1919
- uses: actions/checkout@v3

.github/workflows/test-supported-java-versions.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ on:
55
- cron: '0 4 * * *'
66
workflow_dispatch:
77

8-
env:
9-
RABBITMQ_IMAGE: 'rabbitmq:3.11'
10-
118
jobs:
129
build:
1310
runs-on: ubuntu-22.04

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
env:
10-
RABBITMQ_IMAGE: 'rabbitmq:3.11'
1110
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
1211

1312
jobs:

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Launch the broker:
7575
----
7676
docker run -it --rm --name rabbitmq -p 5552:5552 -p 5672:5672 \
7777
-e RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS='-rabbitmq_stream advertised_host localhost' \
78-
rabbitmq:3.11
78+
rabbitmq:3.12
7979
----
8080

8181
Enable the stream plugin:

ci/start-broker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
LOCAL_SCRIPT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

5-
RABBITMQ_IMAGE=${RABBITMQ_IMAGE:-rabbitmq:3.11}
5+
RABBITMQ_IMAGE=${RABBITMQ_IMAGE:-rabbitmq:3.12}
66

77
wait_for_message() {
88
while ! docker logs "$1" | grep -q "$2";

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
<google-java-format.version>1.15.0</google-java-format.version>
9696
<jacoco.version>0.8.10</jacoco.version>
9797
<!-- for documentation -->
98-
<broker.version>3.11</broker.version>
98+
<broker.version>3.12</broker.version>
9999
<!-- to sign artifacts when releasing -->
100100
<gpg.keyname>6026DFCA</gpg.keyname>
101101
<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss'Z'</maven.build.timestamp.format>

0 commit comments

Comments
 (0)