From 1da401bd154548e2039ba41a693f24cadb393e6a Mon Sep 17 00:00:00 2001 From: Brandon Mitchell Date: Sun, 3 Sep 2023 16:24:43 -0400 Subject: [PATCH] Update supported Go range to 1.19 - 1.21 Previous supported range was 1.18 - 1.20. Signed-off-by: Brandon Mitchell --- .github/workflows/docs-and-linting.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs-and-linting.yml b/.github/workflows/docs-and-linting.yml index 248791c0a..b5fd1d657 100644 --- a/.github/workflows/docs-and-linting.yml +++ b/.github/workflows/docs-and-linting.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: ['1.18', '1.19', '1.20'] + go: ['1.19', '1.20', '1.21'] name: Documentation and Linting steps: diff --git a/go.mod b/go.mod index dad0d8c79..7b46bc4c6 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/opencontainers/image-spec -go 1.18 +go 1.19 require ( github.com/opencontainers/go-digest v1.0.0