Skip to content

Commit afd26cf

Browse files
committed
chore: bump Go version to 1.26 in Dockerfile and CI workflows
Required for crypto/hpke stdlib package used by HPKE encryption.
1 parent c5ac576 commit afd26cf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v4
3434
- uses: actions/setup-go@v5
3535
with:
36-
go-version: '1.24'
36+
go-version: '1.26'
3737

3838
- id: release
3939
uses: bruceadams/get-release@v1.3.2

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
- uses: actions/setup-go@v2
1212
with:
13-
go-version: '1.24'
13+
go-version: '1.26'
1414

1515
- name: Run unit tests
1616
run: go test -v ./...

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24 AS builder
1+
FROM golang:1.26 AS builder
22

33
WORKDIR /src/ltx
44
COPY . .

0 commit comments

Comments
 (0)