From 495446cf4f1f807ec15171b762fd4cc72f1b3acc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Sat, 15 Aug 2026 20:23:20 +0800 Subject: [PATCH] Update Go to 1.26.6 --- .github/setup_go_for_macos1013.sh | 2 +- .github/setup_go_for_windows7.sh | 2 +- .github/workflows/build.yml | 30 +++++++++++++++--------------- .github/workflows/docker.yml | 2 +- .github/workflows/linux.yml | 4 ++-- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/setup_go_for_macos1013.sh b/.github/setup_go_for_macos1013.sh index 4dcf9778..2e6541ce 100755 --- a/.github/setup_go_for_macos1013.sh +++ b/.github/setup_go_for_macos1013.sh @@ -2,7 +2,7 @@ set -euo pipefail -VERSION="1.26.5" +VERSION="1.26.6" PATCH_COMMITS=( "f080b0c6346eb690c0dc82497b35925f385b35ac" "2d9c12887c342fb9051d231aa5388743cb7e9cb6" diff --git a/.github/setup_go_for_windows7.sh b/.github/setup_go_for_windows7.sh index 3561d3aa..3219f499 100755 --- a/.github/setup_go_for_windows7.sh +++ b/.github/setup_go_for_windows7.sh @@ -2,7 +2,7 @@ set -euo pipefail -VERSION="1.26.5" +VERSION="1.26.6" PATCH_COMMITS=( "a4ae550aa148b04c9d4890e98bee63aede5c4b53" "95b851f661584711faa8115b3234a461044f4510" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 97f73bd5..4566bf5e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,7 +54,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 cache: false - name: Cache Go modules uses: actions/cache/restore@v4 @@ -145,7 +145,7 @@ jobs: if: ${{ ! matrix.legacy_win7 }} uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 cache: false - name: Cache Go modules uses: actions/cache/restore@v4 @@ -160,7 +160,7 @@ jobs: with: path: | ~/go/go_win7 - key: go_win7_1265 + key: go_win7_1266 - name: Setup Go for Windows 7 if: matrix.legacy_win7 && steps.cache-go-for-windows7.outputs.cache-hit != 'true' env: @@ -488,7 +488,7 @@ jobs: if: ${{ ! matrix.legacy_osx }} uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 cache: false - name: Cache Go modules uses: actions/cache/restore@v4 @@ -503,7 +503,7 @@ jobs: with: path: | ~/go/go_osx - key: go_osx_1265 + key: go_osx_1266 - name: Setup Go for macOS 10.13 if: matrix.legacy_osx && steps.cache-go-for-macos1013.outputs.cache-hit != 'true' env: @@ -587,7 +587,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 cache: false - name: Cache Go modules uses: actions/cache@v4 @@ -690,7 +690,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 cache: false - name: Cache Go modules uses: actions/cache@v4 @@ -754,7 +754,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 cache: false - name: Cache Go modules uses: actions/cache/restore@v4 @@ -862,7 +862,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 cache: false - name: Cache Go modules uses: actions/cache/restore@v4 @@ -972,7 +972,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 cache: false - name: Cache Go modules uses: actions/cache@v4 @@ -1081,7 +1081,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 cache: false - name: Cache Go modules uses: actions/cache@v4 @@ -1238,7 +1238,7 @@ jobs: if: matrix.build uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 cache: false - name: Cache Go modules if: matrix.build @@ -1252,8 +1252,8 @@ jobs: uses: actions/cache@v4 with: path: ~/Library/Caches/go-build - key: libbox-go-build-${{ matrix.artifact }}-1.26.5-${{ hashFiles('go.sum') }} - restore-keys: libbox-go-build-${{ matrix.artifact }}-1.26.5- + key: libbox-go-build-${{ matrix.artifact }}-1.26.6-${{ hashFiles('go.sum') }} + restore-keys: libbox-go-build-${{ matrix.artifact }}-1.26.6- - name: Set tag if: matrix.build run: git tag v${{ needs.calculate_version.outputs.version }} -f @@ -1316,7 +1316,7 @@ jobs: if: matrix.if uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 cache: false - name: Cache Go modules if: matrix.if diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 45071b00..40193e3d 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -55,7 +55,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 - name: Clone cronet-go if: matrix.naive run: | diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 0e32068f..c675f688 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -29,7 +29,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 - name: Check input version if: github.event_name == 'workflow_dispatch' run: |- @@ -72,7 +72,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: 1.26.5 + go-version: 1.26.6 - name: Clone cronet-go if: matrix.naive run: |