From 07c0555452bdd4902059d29658be48bb75a5d653 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 16 Mar 2022 13:03:44 -0400 Subject: [PATCH] Add go 1.18 to CI --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c980a8e..60bb1bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: ['1.13', '1.14', '1.15', '1.16', '1.17'] + go: ['1.13', '1.14', '1.15', '1.16', '1.17', '1.18'] name: Go ${{ matrix.go }} build steps: - uses: actions/checkout@master @@ -32,19 +32,19 @@ jobs: with: args: -E golint version: v1.45.2 - if: matrix.go == '1.17' + if: matrix.go == '1.18' - uses: actions/upload-artifact@v3 with: name: coverage.html path: coverage.html - if: matrix.go == '1.17' + if: matrix.go == '1.18' - run: make hallow.zip - uses: actions/upload-artifact@v3 with: name: hallow.zip path: hallow.zip - if: matrix.go == '1.17' + if: matrix.go == '1.18' terraform: runs-on: ubuntu-latest strategy: