From d97fb0c9d2260856fb6d7d17183855c0997912fb Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Sat, 21 Oct 2023 21:21:54 -0700 Subject: [PATCH] .github: set latest Go versions --- .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 80fdc0a..f547ffe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,8 +7,8 @@ jobs: - name: Install Go uses: WillAbides/setup-go-faster@main with: - go-version: 1.18.x - - uses: actions/checkout@v3 + go-version: 1.21.x + - uses: actions/checkout@v4 with: path: './src/github.com/kevinburke/ssh_config' # staticcheck needs this for GOPATH @@ -23,14 +23,14 @@ jobs: test: strategy: matrix: - go-version: [1.17.x, 1.18.x, 1.19.x] + go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x] runs-on: ubuntu-latest steps: - name: Install Go uses: WillAbides/setup-go-faster@main with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@vp with: path: './src/github.com/kevinburke/ssh_config' - run: |