Skip to content

Commit d17a9ff

Browse files
committed
Merge branch 'trunk' of https://github.com/apache/kafka into unknown_server_errors_iharker
2 parents bbf6756 + 225660a commit d17a9ff

File tree

78 files changed

+1310
-759
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+1310
-759
lines changed

.github/actions/setup-gradle/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ runs:
4242
distribution: temurin
4343
java-version: ${{ inputs.java-version }}
4444
- name: Setup Gradle
45-
uses: gradle/actions/setup-gradle@748248ddd2a24f49513d8f472f81c3a07d4d50e1 # v4.4.4
45+
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
4646
env:
4747
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
4848
with:

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
- name: Setup Gradle
128128
uses: ./.github/actions/setup-gradle
129129
with:
130-
java-version: 24
130+
java-version: 17
131131
gradle-cache-read-only: ${{ !inputs.is-trunk }}
132132
gradle-cache-write-only: ${{ inputs.is-trunk }}
133133
develocity-access-key: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
@@ -181,7 +181,7 @@ jobs:
181181
fail-fast: false
182182
matrix:
183183
# If we change these, make sure to adjust ci-complete.yml
184-
java: [ 24, 17 ]
184+
java: [ 25, 17 ]
185185
run-flaky: [ true, false ]
186186
run-new: [ true, false ]
187187
exclude:
@@ -270,7 +270,7 @@ jobs:
270270
python .github/scripts/junit.py \
271271
--path build/junit-xml >> $GITHUB_STEP_SUMMARY
272272
273-
# This job downloads all the JUnit XML files and thread dumps from the JDK 24 test runs.
273+
# This job downloads all the JUnit XML files and thread dumps from the JDK 25 test runs.
274274
# If any test job fails, we will not run this job. Also, if any thread dump artifacts
275275
# are present, this means there was a timeout in the tests and so we will not proceed
276276
# with catalog creation.
@@ -288,7 +288,7 @@ jobs:
288288
- name: Download Thread Dumps
289289
uses: actions/download-artifact@v5
290290
with:
291-
pattern: junit-thread-dumps-24-*
291+
pattern: junit-thread-dumps-25-*
292292
path: thread-dumps
293293
merge-multiple: true
294294
- name: Check For Thread Dump
@@ -302,7 +302,7 @@ jobs:
302302
- name: Download JUnit XMLs
303303
uses: actions/download-artifact@v5
304304
with:
305-
pattern: junit-xml-24-* # Only look at JDK 24 tests for the test catalog
305+
pattern: junit-xml-25-* # Only look at JDK 25 tests for the test catalog
306306
path: junit-xml
307307
merge-multiple: true
308308
- name: Collate Test Catalog

.github/workflows/ci-complete.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
# Make sure these match build.yml
47-
java: [ 24, 17 ]
46+
# Make sure these match build.yml and also keep in mind that GitHub Actions build will always use this file from the trunk branch.
47+
java: [ 25, 17 ]
4848
run-flaky: [ true, false ]
4949
run-new: [ true, false ]
5050
exclude:

.github/workflows/docker_build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
python docker_build_test.py kafka/test -tag=test -type=$IMAGE_TYPE -u=$KAFKA_URL
5656
- name: Run CVE scan
57-
uses: aquasecurity/trivy-action@6e7b7d1fd3e4fef0c5fa8cce1229c54b2c9bd0d8 # v0.24.0
57+
uses: aquasecurity/trivy-action@b6643a29fecd7f34b3597bc6acb0a98b03d33ff8 # v0.33.1
5858
with:
5959
image-ref: 'kafka/test:test'
6060
format: 'table'

.github/workflows/docker_official_image_build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: |
5454
python docker_official_image_build_test.py kafka/test -tag=test -type=$IMAGE_TYPE -v=$KAFKA_VERSION
5555
- name: Run CVE scan
56-
uses: aquasecurity/trivy-action@6e7b7d1fd3e4fef0c5fa8cce1229c54b2c9bd0d8 # v0.24.0
56+
uses: aquasecurity/trivy-action@b6643a29fecd7f34b3597bc6acb0a98b03d33ff8 # v0.33.1
5757
with:
5858
image-ref: 'kafka/test:test'
5959
format: 'table'

.github/workflows/docker_promote.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Set up QEMU
34-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
34+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
3535
- name: Set up Docker Buildx
36-
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1
36+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
3737
- name: Login to Docker Hub
38-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
38+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
3939
with:
4040
username: ${{ secrets.DOCKERHUB_USER }}
4141
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/docker_rc_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ jobs:
4747
python -m pip install --upgrade pip
4848
pip install -r docker/requirements.txt
4949
- name: Set up QEMU
50-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
50+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
5151
- name: Set up Docker Buildx
52-
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1
52+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
5353
- name: Login to Docker Hub
54-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
54+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
5555
with:
5656
username: ${{ secrets.DOCKERHUB_USER }}
5757
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/docker_scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
supported_image_tag: ['latest', '3.9.1', '4.0.0', '4.1.0']
3030
steps:
3131
- name: Run CVE scan
32-
uses: aquasecurity/trivy-action@6e7b7d1fd3e4fef0c5fa8cce1229c54b2c9bd0d8 # v0.24.0
32+
uses: aquasecurity/trivy-action@b6643a29fecd7f34b3597bc6acb0a98b03d33ff8 # v0.33.1
3333
if: always()
3434
with:
3535
image-ref: apache/kafka:${{ matrix.supported_image_tag }}

.github/workflows/pr-labels-cron.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
env:
3636
GITHUB_CONTEXT: ${{ toJson(github) }}
3737
- name: Remove label
38-
uses: actions/github-script@v7
38+
uses: actions/github-script@v8
3939
continue-on-error: true
4040
with:
4141
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -77,7 +77,7 @@ jobs:
7777
issues: write
7878
pull-requests: write
7979
steps:
80-
- uses: actions/stale@v9
80+
- uses: actions/stale@v10
8181
with:
8282
debug-only: ${{ inputs.dryRun || false }}
8383
operations-per-run: ${{ inputs.operationsPerRun || 500 }}

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
stale:
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/stale@v9
41+
- uses: actions/stale@v10
4242
with:
4343
debug-only: ${{ inputs.dryRun || false }}
4444
operations-per-run: ${{ inputs.operationsPerRun || 500 }}

0 commit comments

Comments
 (0)