Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
install-go-modules:
strategy:
matrix:
go: ["1.24.x", "1.23.x", "1.22.x"]
go: ["1.25.x", "1.24.x", "1.23.x"]

runs-on: ubuntu-latest

Expand All @@ -28,7 +28,7 @@ jobs:
test:
strategy:
matrix:
go: ["1.24.x", "1.23.x", "1.22.x"]
go: ["1.25.x", "1.24.x", "1.23.x"]
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.24.x"
go-version: "1.25.x"

- name: Run coverage
run: make coverage
Expand All @@ -76,7 +76,7 @@ jobs:
dist:
strategy:
matrix:
go: ["1.24.x", "1.23.x", "1.22.x"]
go: ["1.25.x", "1.24.x", "1.23.x"]
runs-on: ubuntu-latest
needs: test

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.24.x
go-version: 1.25.x

- name: Install nfpm, rpmbuild
run: sudo make -f Makefile.tools nfpm-debian rpmbuild-debian
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.22.x
go-version: 1.25.x

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.4-alpine AS build
FROM golang:1.25.4-alpine AS build

WORKDIR /go/src/github.com/segmentio/chamber
COPY . .
Expand Down