From 6c8305f98979f740b958c30e2e7bc24ea4a8cd2a Mon Sep 17 00:00:00 2001 From: kobayashi Date: Wed, 23 Sep 2020 15:18:46 -0400 Subject: [PATCH] build with go1.15 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e8b39edc8..e61b3f1c5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - go: ["1.13.x", "1.14.x"] + go: ["1.13.x", "1.14.x", "1.15.x"] steps: - name: Checkout uses: actions/checkout@v2 @@ -22,7 +22,7 @@ jobs: run: ./scripts/licensecheck.sh - name: Go installation - uses: actions/setup-go@v1.1.2 + uses: actions/setup-go@v2 with: go-version: ${{ matrix.go }}