From b263044d9b57f5945a8cbf1306035c82b3bb79f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Get=C3=BAlio=20Meirelles?= Date: Tue, 25 Jul 2023 10:42:47 -0300 Subject: [PATCH] chore(workflow): drop 7.4 and add 8.2 --- .github/workflows/continuous-integration.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 59efe8d6..2059f743 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -14,9 +14,9 @@ jobs: strategy: matrix: php: - - '7.4' - '8.0' - '8.1' + - '8.2' env: KAFKA_BROKER_CONNECTIONS: 'localhost:9092' services: @@ -28,11 +28,14 @@ jobs: image: bitnami/kafka ports: - '9092:9092' + - '29092:29092' env: KAFKA_LISTENERS: 'PLAINTEXT://:9092' - KAFKA_CFG_ADVERTISED_LISTENERS: 'PLAINTEXT://localhost:9092' KAFKA_CFG_ZOOKEEPER_CONNECT: 'zookeeper:2181' ALLOW_PLAINTEXT_LISTENER: yes + KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT + KAFKA_CFG_LISTENERS: PLAINTEXT://:9092,PLAINTEXT_HOST://:29092 + KAFKA_CFG_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092 steps: - name: Checkout uses: actions/checkout@v3