From f996a02b44d039c0af88dffc7dd8abd93f3b647e Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Wed, 28 Aug 2024 18:33:28 +0100 Subject: [PATCH] build: update testing go versions to go1.23, go1.22, go1.21 --- .github/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1adc36600..b05ba67d1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,26 +25,26 @@ jobs: strategy: fail-fast: false matrix: - job_name: ['go1.20', 'go1.19', 'go1.18'] + job_name: ['go1.23', 'go1.22', 'go1.21'] include: - - job_name: go1.20 + - job_name: go1.23 os: ubuntu-latest - go: '1.20.x' + go: '1.23.x' gotests: true integrationtest: true check: true - - job_name: go1.19 + - job_name: go1.22 os: ubuntu-latest - go: '1.19.x' + go: '1.22.x' gotests: true integrationtest: true check: false - - job_name: go1.18 + - job_name: go1.21 os: ubuntu-latest - go: '1.18.x' + go: '1.21.x' gotests: true integrationtest: true check: false