diff options
| author | Alex Flint <[email protected]> | 2024-06-30 16:42:12 -0400 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2024-06-30 16:42:12 -0400 | 
| commit | ec0ced74672ea46c7b57cea1bb44e18cf9237a8a (patch) | |
| tree | d16ec7bdbe52deaa459a26f1962004a9229df1a3 | |
| parent | 0cc152dce52a7a61cc3cd73d25eae82adad99807 (diff) | |
| parent | 67353a8bcf2a2c30623e68eaf50075b7a6fcf1a8 (diff) | |
Merge pull request #232 from alexflint/bump-go-versions
bump go versions used in 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 dcb52cf..58e0c0e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -15,17 +15,17 @@ jobs:      strategy:        fail-fast: false        matrix: -        go: ['1.17', '1.18', '1.19'] +        go: ['1.20', '1.21', '1.22']      steps:      - id: go        name: Set up Go -      uses: actions/setup-go@v3 +      uses: actions/setup-go@v5        with:          go-version: ${{ matrix.go }}      - name: Checkout -      uses: actions/checkout@v3 +      uses: actions/checkout@v4      - name: Build        run: go build -v .  | 
