From 72f3bff9fc92731899074717f2e734cd95d440d9 Mon Sep 17 00:00:00 2001 From: Matt Quinn Date: Thu, 22 Aug 2024 10:21:06 -0400 Subject: [PATCH] ci: add go1.23 (#872) --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d98e8b6b3..681e50da5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -60,10 +60,10 @@ jobs: # pull requests, only run this step for a single job in the matrix. For # all other workflow triggers (e.g., pushes to a release branch) run # this step for the whole matrix. - if: ${{ github.event_name != 'pull_request' || (matrix.go == '1.22' && matrix.os == 'ubuntu') }} + if: ${{ github.event_name != 'pull_request' || (matrix.go == '1.23' && matrix.os == 'ubuntu') }} timeout-minutes: 15 strategy: matrix: - go: ["1.22", "1.21", "1.20", "1.19", "1.18"] + go: ["1.23", "1.22", "1.21", "1.20", "1.19", "1.18"] os: [ubuntu, windows, macos] fail-fast: false