Skip to content

Commit fe859ee

Browse files
Bump Go min version to Go 1.23 (#640)
This change bumps the Go min version to Go 1.23 which is required for golang.org/x/* dependency updates. Signed-off-by: Austin Vazquez <[email protected]>
1 parent 125a587 commit fe859ee

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
strategy:
1313
matrix:
14-
go: ['1.21', '1.22', '1.23']
14+
go: ['1.23', '1.24']
1515
os: ['ubuntu-22.04']
1616
fail-fast: false
1717
name: ${{ matrix.os }} / Go ${{ matrix.go }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Please see [HACKING](HACKING.md)
2121
Building
2222
---
2323

24-
This library requires Go 1.18 or later and Go modules to build. A Makefile is provided
24+
This library requires Go 1.23 or later and Go modules to build. A Makefile is provided
2525
for convenience, but is not required. When using the Makefile, you can pass
2626
additional flags to the Go compiler via the `EXTRAGOARGS` make variable.
2727

doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Firecracker is an open-source virtualization technology that is purpose-built
1818
for creating and managing secure, multi-tenant containers and functions-based
1919
services. See https://firecracker-microvm.github.io/ for more details.
2020
21-
This library requires Go 1.18 or later and can be used with Go modules.
21+
This library requires Go 1.23 or later and can be used with Go modules.
2222
2323
BUG(aws): There are some Firecracker features that are not yet supported by the
2424
SDK. These are tracked as GitHub issues with the firecracker-feature label:

examples/cmd/snapshotting/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module main
22

3-
go 1.21
3+
go 1.23
44

55
require (
66
github.com/firecracker-microvm/firecracker-go-sdk v1.0.0

go.mod

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

3-
go 1.21
3+
go 1.23
44

55
require (
66
github.com/containerd/fifo v1.1.0

0 commit comments

Comments
 (0)