From b37a86bc3491c732a2b5ea198bc7cb307e239992 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 13 Jun 2023 10:06:15 +0100 Subject: [PATCH] build: update go versions --- .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 5c1b7bf10..1adc36600 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,26 +25,26 @@ jobs: strategy: fail-fast: false matrix: - job_name: ['go1.17', 'go1.16', 'go1.15'] + job_name: ['go1.20', 'go1.19', 'go1.18'] include: - - job_name: go1.17 + - job_name: go1.20 os: ubuntu-latest - go: '1.17.x' + go: '1.20.x' gotests: true integrationtest: true check: true - - job_name: go1.16 + - job_name: go1.19 os: ubuntu-latest - go: '1.16.x' + go: '1.19.x' gotests: true integrationtest: true check: false - - job_name: go1.15 + - job_name: go1.18 os: ubuntu-latest - go: '1.15.x' + go: '1.18.x' gotests: true integrationtest: true check: false