diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 3dc3a2f..af08028 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -5,19 +5,19 @@ jobs: # name: build strategy: matrix: - go: [1.24.x, 1.25.x] + go: [1.25.x, 1.26.x] os: [macOS-latest, windows-latest, ubuntu-latest] runs-on: ${{ matrix.os }} steps: - name: Set up Go ${{ matrix.go }} - uses: actions/setup-go@v1 + uses: actions/setup-go@v6 with: go-version: ${{ matrix.go }} id: go - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v6 - name: Get dependencies run: |