Skip to content

Commit 5ef2977

Browse files
authored
Merge branch 'master' into fix/panic-on-non-numeric-consumer-offset-filenames
2 parents a79387f + 611fca0 commit 5ef2977

32 files changed

Lines changed: 300 additions & 177 deletions

File tree

.github/actions/csharp-dotnet/post-merge/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
using: "composite"
3232
steps:
3333
- name: Setup .NET
34-
uses: actions/setup-dotnet@v4
34+
uses: actions/setup-dotnet@v5
3535
with:
3636
dotnet-version: "10.0.x"
3737

.github/actions/csharp-dotnet/pre-merge/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ runs:
2828
using: "composite"
2929
steps:
3030
- name: Setup .NET
31-
uses: actions/setup-dotnet@v4
31+
uses: actions/setup-dotnet@v5
3232
with:
3333
dotnet-version: "10.0.x"
3434

@@ -109,7 +109,7 @@ runs:
109109
find foreign/csharp/Iggy_SDK.Tests.Integration/bin -name "*.log" -path "*/container-logs/*" -exec cp {} foreign/csharp/reports/container-logs/ \; || true
110110
111111
- name: Upload Test Results
112-
uses: actions/upload-artifact@v4
112+
uses: actions/upload-artifact@v7
113113
if: inputs.task == 'e2e' && always()
114114
with:
115115
name: dotnet-test-results

.github/actions/go/pre-merge/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ runs:
8383
8484
- name: Lint
8585
if: inputs.task == 'lint'
86-
uses: golangci/golangci-lint-action@v7
86+
uses: golangci/golangci-lint-action@v9
8787
with:
8888
version: v2.11.3
8989
working-directory: foreign/go
@@ -92,7 +92,7 @@ runs:
9292

9393
- name: Lint BDD
9494
if: inputs.task == 'lint' && hashFiles('bdd/go/go.mod') != ''
95-
uses: golangci/golangci-lint-action@v7
95+
uses: golangci/golangci-lint-action@v9
9696
with:
9797
version: v2.11.3
9898
working-directory: bdd/go
@@ -101,7 +101,7 @@ runs:
101101

102102
- name: Lint Examples
103103
if: inputs.task == 'lint' && hashFiles('examples/go/go.mod') != ''
104-
uses: golangci/golangci-lint-action@v7
104+
uses: golangci/golangci-lint-action@v9
105105
with:
106106
version: v2.11.3
107107
working-directory: examples/go

.github/actions/node-npm/post-merge/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
using: "composite"
3232
steps:
3333
- name: Setup Node.js
34-
uses: actions/setup-node@v4
34+
uses: actions/setup-node@v6
3535
with:
3636
node-version: "23"
3737
registry-url: "https://registry.npmjs.org"

.github/actions/node-npm/pre-merge/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ runs:
2727
using: "composite"
2828
steps:
2929
- name: Setup Node.js
30-
uses: actions/setup-node@v4
30+
uses: actions/setup-node@v6
3131
with:
3232
node-version: "23"
3333
registry-url: "https://registry.npmjs.org"

.github/actions/python-maturin/post-merge/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ runs:
5353
shell: bash
5454

5555
- name: Download pre-built wheels
56-
uses: actions/download-artifact@v4
56+
uses: actions/download-artifact@v8
5757
with:
5858
name: ${{ inputs.wheels_artifact }}
5959
path: ${{ inputs.wheels_path }}
@@ -153,7 +153,7 @@ runs:
153153

154154
- name: Install uv
155155
if: inputs.dry_run == 'false'
156-
uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
156+
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
157157

158158
- name: Publish to PyPI
159159
if: inputs.dry_run == 'false'

.github/actions/python-maturin/pre-merge/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ runs:
2727
using: "composite"
2828
steps:
2929
- name: Setup Python
30-
uses: actions/setup-python@v5
30+
uses: actions/setup-python@v6
3131
with:
3232
python-version: "3.10"
3333

@@ -41,10 +41,10 @@ runs:
4141
tool: cargo-llvm-cov
4242

4343
- name: Install uv
44-
uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
44+
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
4545

4646
- name: Cache uv
47-
uses: actions/cache@v4
47+
uses: actions/cache@v5
4848
with:
4949
path: ~/.cache/uv
5050
key: uv-${{ runner.os }}-${{ hashFiles('examples/python/uv.lock', 'foreign/python/uv.lock', 'bdd/python/uv.lock') }}
@@ -187,7 +187,7 @@ runs:
187187

188188
- name: Upload test artifacts
189189
if: always() && inputs.task == 'test'
190-
uses: actions/upload-artifact@v4
190+
uses: actions/upload-artifact@v7
191191
with:
192192
name: python-test-results-${{ github.run_id }}-${{ github.run_attempt }}
193193
path: |

.github/actions/utils/docker-buildx/action.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,20 +130,20 @@ runs:
130130
- name: Set up QEMU
131131
# Skip QEMU when building single platform on native runner (no emulation needed)
132132
if: inputs.platform == ''
133-
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
133+
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
134134
with:
135135
platforms: all
136136

137137
- name: Set up Docker Buildx
138-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
138+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
139139
with:
140140
driver-opts: |
141141
network=host
142142
image=moby/buildkit:latest
143143
144144
- name: Login to Docker Hub
145145
if: steps.config.outputs.should_push == 'true'
146-
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
146+
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
147147
with:
148148
username: ${{ env.DOCKERHUB_USER }}
149149
password: ${{ env.DOCKERHUB_TOKEN }}
@@ -167,7 +167,7 @@ runs:
167167
168168
- name: Docker meta
169169
id: meta
170-
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
170+
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
171171
with:
172172
images: ${{ steps.config.outputs.image }}
173173
# Tags are only used for local builds (dry-run). Push mode always uses digest.
@@ -343,7 +343,7 @@ runs:
343343
- name: Build and push (by digest)
344344
id: build-push
345345
if: steps.config.outputs.should_push == 'true'
346-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
346+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
347347
with:
348348
context: ${{ steps.ctx.outputs.context }}
349349
file: ${{ steps.config.outputs.dockerfile }}
@@ -358,7 +358,7 @@ runs:
358358
- name: Build only (dry-run)
359359
id: build-only
360360
if: steps.config.outputs.should_push != 'true'
361-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
361+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
362362
with:
363363
context: ${{ steps.ctx.outputs.context }}
364364
file: ${{ steps.config.outputs.dockerfile }}

.github/actions/utils/setup-cpp-with-cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
using: "composite"
2323
steps:
2424
- name: Setup Bazel with cache
25-
uses: bazel-contrib/setup-bazel@083175551ceeceebc757ebee2127fde78840ca77 # v0.18.0
25+
uses: bazel-contrib/setup-bazel@c5acdfb288317d0b5c0bbd7a396a3dc868bb0f86 # v0.19.0
2626
with:
2727
bazelisk-cache: true
2828
disk-cache: true

.github/actions/utils/setup-go-with-cache/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ runs:
4343
using: "composite"
4444
steps:
4545
- name: Setup Go toolchain
46-
uses: actions/setup-go@v5
46+
uses: actions/setup-go@v6
4747
with:
4848
go-version: ${{ inputs.go-version }}
4949
cache: ${{ inputs.read-cache == 'true' }}
5050

5151
- name: Setup additional Go module cache
5252
if: inputs.read-cache == 'true'
53-
uses: actions/cache@v4
53+
uses: actions/cache@v5
5454
with:
5555
path: |
5656
~/go/pkg/mod
@@ -61,7 +61,7 @@ runs:
6161
6262
- name: Setup golangci-lint cache
6363
if: inputs.read-cache == 'true'
64-
uses: actions/cache@v4
64+
uses: actions/cache@v5
6565
with:
6666
path: ~/.cache/golangci-lint
6767
key: golangci-lint-${{ runner.os }}-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)