diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bc4e3e3..855db85 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,12 +4,12 @@ jobs: test: strategy: matrix: - go-version: [1.22.x] + go-version: [1.23.x] runs-on: ubuntu-latest steps: - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: make build - run: go test ./...