diff options
author | Joe Chen <jc@unknwon.io> | 2022-08-08 13:56:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-08 13:56:50 +0800 |
commit | a43b933c90ed7207e1d573bf118e3c37541835f8 (patch) | |
tree | c9db9bb6345628213cb481a943b2e4e0fdafb28f /.github/workflows | |
parent | cfa5ddbde82f8aa892a5cc56fcc5aa7388e27ddc (diff) |
go: update required version to be 1.17 and add 1.19 to CI (#7129)
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/go.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 80264fdb..203e7113 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -55,7 +55,7 @@ jobs: name: Test strategy: matrix: - go-version: [ 1.16.x, 1.17.x, 1.18.x ] + go-version: [ 1.17.x, 1.18.x, 1.19.x ] platform: [ ubuntu-latest, macos-latest ] runs-on: ${{ matrix.platform }} steps: @@ -95,7 +95,7 @@ jobs: name: Test strategy: matrix: - go-version: [ 1.16.x, 1.17.x, 1.18.x ] + go-version: [ 1.17.x, 1.18.x, 1.19.x ] platform: [ windows-latest ] runs-on: ${{ matrix.platform }} steps: @@ -133,7 +133,7 @@ jobs: name: Postgres strategy: matrix: - go-version: [ 1.16.x, 1.17.x, 1.18.x ] + go-version: [ 1.17.x, 1.18.x, 1.19.x ] platform: [ ubuntu-latest ] runs-on: ${{ matrix.platform }} services: @@ -169,7 +169,7 @@ jobs: name: MySQL strategy: matrix: - go-version: [ 1.16.x, 1.17.x, 1.18.x ] + go-version: [ 1.17.x, 1.18.x, 1.19.x ] platform: [ ubuntu-18.04 ] runs-on: ${{ matrix.platform }} steps: @@ -194,7 +194,7 @@ jobs: name: SQLite - Go strategy: matrix: - go-version: [ 1.16.x, 1.17.x, 1.18.x ] + go-version: [ 1.17.x, 1.18.x, 1.19.x ] platform: [ ubuntu-latest ] runs-on: ${{ matrix.platform }} steps: |