From 1d42d754df24198ced0bc78a74a3281ba24f3afa Mon Sep 17 00:00:00 2001 From: Austin Vazquez Date: Mon, 12 Feb 2024 02:35:07 +0000 Subject: [PATCH] Update GitHub Actions matrix for Go v1.21 and v1.22 This change adds Go v1.21 and v1.22 to the GitHub Actions matrix in CI. It also drops previous Go versions as they would no longer receive updates. Signed-off-by: Austin Vazquez --- .github/workflows/build-pr.yml | 2 +- .github/workflows/build.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index 70fe76e8..5997c718 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - go: ['1.18', '1.19', '1.20'] + go: ['1.21', '1.22'] steps: - name: checkout source code diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 849c9c79..c0428612 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - go: ['1.18', '1.19', '1.20'] + go: ['1.21', '1.22'] steps: - name: checkout source code