From 4317fdc9712896c56434541bd1c8826dbe5e0a82 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 03:53:21 +0000 Subject: [PATCH] chore(deps): update dependency go to 1.26 --- .github/workflows/release-go.yml | 2 +- .github/workflows/test-go.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-go.yml b/.github/workflows/release-go.yml index d8bd3b5..8f26c89 100644 --- a/.github/workflows/release-go.yml +++ b/.github/workflows/release-go.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.26" - name: Validate (vet + test) run: go vet ./... && go test ./... -count=1 - name: Warm the module proxy diff --git a/.github/workflows/test-go.yml b/.github/workflows/test-go.yml index ddda24f..21ffb36 100644 --- a/.github/workflows/test-go.yml +++ b/.github/workflows/test-go.yml @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.26" cache: false # stdlib-only module, no go.sum to cache - name: gofmt (must be clean) run: test -z "$(gofmt -l .)" || { echo 'run gofmt -w'; gofmt -l .; exit 1; }