From 8dab12a7b29ab76eb875f787c270e474d133482b Mon Sep 17 00:00:00 2001 From: crozzy Date: Tue, 2 Apr 2024 15:37:45 -0700 Subject: [PATCH] chore: update go version in CI tests to 1.21 This is needed as claircore now requires 1.21.8 and also you need >=1.21 to be able to specify a patch version in the go.mod file. Signed-off-by: crozzy --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 9aa645e..5827d46 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -13,7 +13,7 @@ jobs: tests: name: Tests runs-on: ubuntu-latest - container: quay.io/projectquay/golang:1.20 + container: quay.io/projectquay/golang:1.21 steps: - uses: actions/checkout@v4 - run: go test ./...