diff options
| author | Alex Flint <[email protected]> | 2022-10-02 13:16:32 -0700 |
|---|---|---|
| committer | Alex Flint <[email protected]> | 2022-10-02 13:16:32 -0700 |
| commit | 7f4979a06ec60712a6a7ad2650b504df6363ec29 (patch) | |
| tree | 63f286f4ee8c1df97ab1e0f041270571eebe47ed | |
| parent | 0c21f821f8d86250587b570e6848e4add850585c (diff) | |
update to latest 3 versions of Go for CI
| -rw-r--r-- | .github/workflows/go.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 3dbb91d..dcb52cf 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -15,17 +15,17 @@ jobs: strategy: fail-fast: false matrix: - go: ['1.13', '1.14', '1.15', '1.16'] + go: ['1.17', '1.18', '1.19'] steps: - id: go name: Set up Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go }} - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build run: go build -v . |
