Skip to content

Commit e249c55

Browse files
committed
build: switch to go-1.24
1 parent 336fce7 commit e249c55

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
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.23'
16+
go-version: '1.24'
1717
- name: gofmt -l .
1818
run: files=$(gofmt -l .); if [[ -n "$files" ]]; then echo "$files"; exit 1; fi
1919
- run: go vet ./...

Dockerfile

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

33
WORKDIR /workspace
44
COPY go.mod go.mod

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.io/coroot/operator
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/crewjam/saml v0.5.1

0 commit comments

Comments
 (0)