From 8547911370b35e8ce82aa9f7a403f54486ccae0e Mon Sep 17 00:00:00 2001 From: Austin Vazquez Date: Sun, 11 Feb 2024 20:03:02 +0000 Subject: [PATCH] Add Go v1.21 and v1.22 to GitHub Actions CI matrix This change adds Go v1.21 and v1.22 to the CI matrix and drops Go v1.19 and v1.20 since they will no longer be getting 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 2b4e960..2f7f0b1 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - go: [1.19.x, 1.20.x] + go: [1.21.x, 1.22.x] steps: - name: checkout source code diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 83354d8..bcb6c9f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - go: [1.19.x, 1.20.x] + go: [1.21.x, 1.22.x] steps: - name: checkout source code