From 8f3a3298a81d0f8c8b59d46582103db7a74ddb31 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 13 Aug 2025 06:43:37 +0000 Subject: [PATCH] chore(deps): update dependency go to 1.25.x --- .github/workflows/build.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 ./...