From bda47ffaa7846f91941023e81b8f9f9ad37d0e82 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Tue, 26 Oct 2021 02:36:05 +0900 Subject: [PATCH] Update the Go version to 1.12 (#144) At least, we will want syscall.Syscall18 for Windows in near future to remove Cgo usages from Windows. 1.12 is the minimum version to support this. Updates #109 --- .github/workflows/main.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7c9b073..155c9b0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go-version: [1.9, 1.12, 1.16] + go-version: [1.17, 1.16, 1.15, 1.14, 1.13, 1.12] os: [macos-latest, windows-latest, ubuntu-latest] steps: - name: Install dependencies (linux) diff --git a/go.mod b/go.mod index 69c7761..dfe9c02 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/go-gl/gl -go 1.9 +go 1.12