From 0223c1cffa42345ac53c6ae5ba5d4427d596630a Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Wed, 2 Oct 2024 12:31:47 -0400 Subject: [PATCH] The `services:rabbitmq` does not work well somehow --- .github/workflows/ci-snapshot.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-snapshot.yml b/.github/workflows/ci-snapshot.yml index ba43d17b..116110e6 100644 --- a/.github/workflows/ci-snapshot.yml +++ b/.github/workflows/ci-snapshot.yml @@ -22,17 +22,13 @@ jobs: env: DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} - services: - rabbitmq: - image: rabbitmq:3.13.7-management - options: --name rabbitmq - ports: - - 5672:5672 - - 15672:15672 - - 5552:5552 - steps: - - run: docker exec rabbitmq rabbitmq-plugins enable rabbitmq_stream + - name: Start RabbitMQ + uses: namoshek/rabbitmq-github-action@v1 + with: + ports: '5672:5672 15672:15672 5552:5552' + plugins: rabbitmq_stream,rabbitmq_management + - uses: actions/checkout@v4 with: show-progress: false