diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e23e1252..ab29df40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,18 +21,18 @@ jobs: strategy: matrix: - go-version: [1.14.x, 1.15.x, 1.16.x, 1.17.x] + go-version: [1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }} - name: Test