From 839f8e571a67636004277d96303a9d995336ce69 Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Thu, 27 Jun 2024 17:05:49 +0200 Subject: [PATCH] go.mod: Update go to 1.21 This was implicitly changed in commit df12a45 since go-winio 0.6.2 requires go 1.21. The insomniakslk/dhcp update makes this change required as it breaks the build with go 1.20. Signed-off-by: Christophe Fergeau --- .github/workflows/go.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 18fe992eb..6babb3972 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - go-version: ["1.20.x", "1.21.x", "1.22.x"] + go-version: ["1.21.x", "1.22.x"] steps: - uses: actions/checkout@v4 with: diff --git a/go.mod b/go.mod index ee32fa34c..40d318f9a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/containers/gvisor-tap-vsock -go 1.20 +go 1.21 require ( github.com/Microsoft/go-winio v0.6.2