diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index d8a7e69..69cf1c6 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -7,16 +7,16 @@ jobs: strategy: matrix: os: [macos-latest, ubuntu-latest] - goversion: [1.19, "1.20", "1.21"] + goversion: [1.19, "1.20", "1.21", "1.22"] steps: - name: Set up Go ${{matrix.goversion}} on ${{matrix.os}} - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{matrix.goversion}} id: go - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: gofmt run: |