Skip to content

Commit e211d4c

Browse files
authored
Merge pull request #546 from swagatbora90/update_go_min
Update min go version to 1.18
2 parents 58cd01a + 3c57088 commit e211d4c

File tree

9 files changed

+8
-3465
lines changed

9 files changed

+8
-3465
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.17', '1.18', '1.19', '1.20']
14+
go: ['1.18', '1.19', '1.20', '1.21', '1.22']
1515
os: ['ubuntu-22.04']
1616
fail-fast: false
1717
name: ${{ matrix.os }} / Go ${{ matrix.go }}

.hack/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module hack
1010
go 1.11
1111

1212
require (
13-
github.com/awslabs/tc-redirect-tap v0.0.0-20220715050423-f2af44521093 // indirect
13+
github.com/awslabs/tc-redirect-tap v0.0.0-20240408144842-496fddc89db6 // indirect
1414
github.com/containernetworking/plugins v1.1.1 // indirect
1515
github.com/kunalkushwaha/ltag v0.2.3 // indirect
1616
)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ $(FC_TEST_BIN_PATH)/static:
121121
$(call install_go,github.com/containernetworking/plugins/plugins/ipam/static,v1.1.1)
122122

123123
$(FC_TEST_BIN_PATH)/tc-redirect-tap:
124-
$(call install_go,github.com/awslabs/tc-redirect-tap/cmd/tc-redirect-tap,v0.0.0-20220715050423-f2af44521093)
124+
$(call install_go,github.com/awslabs/tc-redirect-tap/cmd/tc-redirect-tap,v0.0.0-20240408144842-496fddc89db6)
125125

126126
$(FC_TEST_DATA_PATH)/ltag:
127127
$(call install_go,github.com/kunalkushwaha/ltag,v0.2.3)

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.17 or later and Go modules to build. A Makefile is provided
24+
This library requires Go 1.18 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.17 or later and can be used with Go modules.
21+
This library requires Go 1.18 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/.hack/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ module hack
1010
go 1.11
1111

1212
require (
13-
github.com/awslabs/tc-redirect-tap v0.0.0-20220715050423-f2af44521093 // indirect
13+
github.com/awslabs/tc-redirect-tap v0.0.0-20240408144842-496fddc89db6 // indirect
1414
github.com/containernetworking/plugins v1.1.1 // indirect
1515
)

examples/cmd/snapshotting/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ bin:
4444
mkdir -p bin
4545

4646
bin/tc-redirect-tap: bin
47-
$(call install_go,github.com/awslabs/tc-redirect-tap/cmd/tc-redirect-tap,v0.0.0-20220715050423-f2af44521093)
47+
$(call install_go,github.com/awslabs/tc-redirect-tap/cmd/tc-redirect-tap,v0.0.0-20240408144842-496fddc89db6)
4848

4949
bin/ptp: bin
5050
$(call install_go,github.com/containernetworking/plugins/plugins/main/ptp,v1.1.1)

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.17
3+
go 1.18
44

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

go.sum

Lines changed: 0 additions & 3457 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)