From ee0ad9722fa8ba91f403c97e78393b39a390289b Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Wed, 15 Nov 2023 18:43:07 +0100 Subject: [PATCH] build: downgrade to go 1.20 go 1.21 breaks the Podman CI since it is not available on Fedora 38. [NO NEW TESTS NEEDED] Signed-off-by: Giuseppe Scrivano --- .cirrus.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index d11e7bd008c..ab95dcbc4e1 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -120,7 +120,7 @@ vendor_task: # Runs within Cirrus's "community cluster" container: - image: docker.io/library/golang:1.21 + image: docker.io/library/golang:1.20 cpu: 1 memory: 1 diff --git a/go.mod b/go.mod index cc52217a0f8..5e64cdaf9d9 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/containers/buildah -go 1.21 +go 1.20 require ( github.com/containerd/containerd v1.7.8