Skip to content

fix(deps): Update github.com/twmb/franz-go/pkg/kadm to v1.18.0 (main) #8677

fix(deps): Update github.com/twmb/franz-go/pkg/kadm to v1.18.0 (main)

fix(deps): Update github.com/twmb/franz-go/pkg/kadm to v1.18.0 (main) #8677

# Test workflow to verify Loki binaries compile successfully for multiple Linux architectures.
# This ensures PRs don't break cross-platform builds.
name: Test Build Loki Binaries
on:
pull_request: {}
permissions:
contents: read
env:
GO_VERSION: "1.26.4"
jobs:
build:
name: Test Build ${{ matrix.binary.name }} (${{ matrix.goos }}/${{ matrix.goarch }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
goos: [linux]
goarch: [amd64, arm64, arm]
binary:
- name: loki
path: ./cmd/loki
- name: logcli
path: ./cmd/logcli
- name: querytee
path: ./cmd/querytee
steps:
- name: Checkout code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Build ${{ matrix.binary.name }}
env:
CGO_ENABLED: "0"
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
run: |
echo "Building ${{ matrix.binary.name }} for $GOOS/$GOARCH"
go build -v -o ${{ matrix.binary.name }}-${{ matrix.goos }}-${{ matrix.goarch }} ${{ matrix.binary.path }}