Skip to content

Commit 0852eb4

Browse files
committed
Update Kafka version for CI
1 parent efbe744 commit 0852eb4

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

.github/workflows/kafka_api_bazel_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- main
88

99
env:
10-
KAFKA_SRC_LINK: https://archive.apache.org/dist/kafka/2.8.1/kafka_2.13-2.8.1.tgz
10+
KAFKA_SRC_LINK: https://dlcdn.apache.org/kafka/3.2.0/kafka_2.13-3.2.0.tgz
1111
CPU_CORE_NUM: 2
1212
LIBRDKAFKA_VERSION: 1.8.2
1313

@@ -26,7 +26,7 @@ jobs:
2626
test-labels: unit,integration
2727

2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v3
3030

3131
- name: Update the List for Available Packages
3232
if: contains(matrix.os, 'ubuntu')

.github/workflows/kafka_api_ci_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- main
88

99
env:
10-
KAFKA_SRC_LINK: https://archive.apache.org/dist/kafka/2.8.1/kafka_2.13-2.8.1.tgz
10+
KAFKA_SRC_LINK: https://dlcdn.apache.org/kafka/3.2.0/kafka_2.13-3.2.0.tgz
1111
CPU_CORE_NUM: 2
1212
LIBRDKAFKA_VERSION: 1.8.2
1313
BUILD_SUB_DIR: builds/sub-build
@@ -91,7 +91,7 @@ jobs:
9191
test-labels: robustness
9292

9393
steps:
94-
- uses: actions/checkout@v2
94+
- uses: actions/checkout@v3
9595

9696
- name: Update the List for Available Packages
9797
if: contains(matrix.os, 'ubuntu')
@@ -271,7 +271,7 @@ jobs:
271271
- test-labels: ''
272272

273273
steps:
274-
- uses: actions/checkout@v2
274+
- uses: actions/checkout@v3
275275

276276
- name: Install Dependencies
277277
run: |
@@ -303,8 +303,8 @@ jobs:
303303
cd $Env:BUILD_SUB_DIR
304304
305305
$Env:GTEST_ROOT='C:\VCPKG\INSTALLED\x86-windows\'
306-
$Env:BOOST_ROOT='C:\VCPKG\INSTALLED\x86-windows\';
307-
$Env:LIBRDKAFKA_ROOT='C:\VCPKG\INSTALLED\x86-windows\';
306+
$Env:BOOST_ROOT='C:\VCPKG\INSTALLED\x86-windows\'
307+
$Env:LIBRDKAFKA_ROOT='C:\VCPKG\INSTALLED\x86-windows\'
308308
309309
$Env:LD_LIBRARY_PATH='C:\VCPKG\INSTALLED\x86-windows\lib\'
310310
echo $Env:LD_LIBRARY_PATH

.github/workflows/kafka_api_gen_doc.yml

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

9+
permissions:
10+
contents: write
11+
912
jobs:
1013
kafka-api-build-doc:
1114
runs-on: ubuntu-22.04
@@ -14,7 +17,7 @@ jobs:
1417

1518
steps:
1619
- name: Checkout
17-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
1821

1922
- name: Install Dependencies
2023
run: |
@@ -57,7 +60,7 @@ jobs:
5760
runs-on: ubuntu-22.04
5861
steps:
5962
- name: Checkout
60-
uses: actions/checkout@v2.3.1
63+
uses: actions/checkout@v3
6164
with:
6265
persist-credentials: false
6366

@@ -67,10 +70,8 @@ jobs:
6770
name: document
6871

6972
- name: Deploy to Pages
70-
uses: JamesIves/github-pages-deploy-action@4.0.0
73+
uses: JamesIves/github-pages-deploy-action@4.3.3
7174
with:
72-
ssh-key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
7375
branch: gh-pages
7476
folder: document
75-
clean: true
7677

0 commit comments

Comments
 (0)