Skip to content

Commit c539f88

Browse files
committed
Raise golang version to 1.24
1 parent 9aeb0ac commit c539f88

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: Lint & test Go code
2626
runs-on: [ self-hosted, Linux ]
2727
container:
28-
image: golang:1.23-alpine
28+
image: golang:1.24-alpine
2929

3030
steps:
3131
- name: Dump github context
@@ -90,7 +90,7 @@ jobs:
9090

9191
- uses: actions/setup-go@v3
9292
with:
93-
go-version: "^1.23.4"
93+
go-version: "^1.24.3"
9494

9595
- name: Run Python tests
9696
run: make test-py

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: Lint & test Go code
2525
runs-on: [ self-hosted, Linux ]
2626
container:
27-
image: golang:1.23-alpine
27+
image: golang:1.24-alpine
2828

2929
steps:
3030
- name: Dump github context
@@ -91,7 +91,7 @@ jobs:
9191

9292
- uses: actions/setup-go@v3
9393
with:
94-
go-version: "^1.23.4"
94+
go-version: "^1.24.3"
9595

9696
- name: Run Python tests
9797
run: make test-py
@@ -122,7 +122,7 @@ jobs:
122122

123123
- uses: actions/setup-go@v3
124124
with:
125-
go-version: "^1.19.13"
125+
go-version: "^1.24.3"
126126

127127
- name: Build binaries for ${{ matrix.go-os }}
128128
run: make frames-bin

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ frames:
130130
--env GOARCH=$(GOARCH) \
131131
--env FRAMES_TAG=$(FRAMES_TAG) \
132132
--platform=linux/amd64
133-
golang:1.23-alpine \
133+
golang:1.24-alpine \
134134
make frames-bin
135135

136136
PHONY: gofmt

cmd/framesd/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# You can also use -e V3IO_GRPC_PORT=9999 and -e V3IO_HTTP_PORT=9998 to set ports
1919
# (don't forget to update the -p accordingly)
2020

21-
FROM --platform=linux/amd64 golang:1.23-alpine AS build
21+
FROM --platform=linux/amd64 golang:1.24-alpine AS build
2222

2323
WORKDIR /frames
2424
COPY . .

go.mod

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

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/ghodss/yaml v1.0.0

0 commit comments

Comments
 (0)