diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c6a22d9..81f112b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-go@v5 with: - go-version: "1.24.x" + go-version: "1.25.x" - run: go build . env: CGO_ENABLED: '0' diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index cca6cb6..ca3ffcb 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-go@v5 with: - go-version: "1.24.x" + go-version: "1.25.x" - uses: golangci/golangci-lint-action@v8 with: version: "latest" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 71f596b..760a513 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,6 +16,6 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-go@v5 with: - go-version: "1.24.x" + go-version: "1.25.x" - name: Run test with coverage run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...