Skip to content

Commit 0d521f7

Browse files
committed
Upgrade to Go 1.26 and Alpine 3.23
1 parent f01ee55 commit 0d521f7

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/quality-assurance.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-go@v5
1515
with:
16-
go-version: "1.24"
16+
go-version: "1.26"
1717
- uses: golangci/golangci-lint-action@v6
1818
with:
1919
version: v1.64.5
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v4
2525
- uses: actions/setup-go@v5
2626
with:
27-
go-version: "1.24"
27+
go-version: "1.26"
2828
- run: go mod tidy
2929
- run: git diff --exit-code go.mod go.sum
3030

@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions/checkout@v4
3535
- uses: actions/setup-go@v5
3636
with:
37-
go-version: "1.24"
37+
go-version: "1.26"
3838
- run: go fix ./...
3939
- run: git diff --exit-code
4040

@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/checkout@v4
4545
- uses: actions/setup-go@v5
4646
with:
47-
go-version: "1.24"
47+
go-version: "1.26"
4848
- run: go test -race ./...
4949

5050
docker:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.4-alpine AS builder
1+
FROM golang:1.26.0-alpine3.23 AS builder
22

33
WORKDIR /build
44

@@ -8,7 +8,7 @@ RUN go mod download
88
COPY . .
99
RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o burrow ./cmd/burrow
1010

11-
FROM alpine:3.21.3
11+
FROM alpine:3.23.0
1212

1313
RUN apk add --no-cache ca-certificates
1414

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/firecow/burrow
22

3-
go 1.24.0
3+
go 1.26.0
44

55
require (
66
github.com/coder/websocket v1.8.14

0 commit comments

Comments
 (0)