From 09312809a49e65e98af3c2e6d8f43a420dae703f Mon Sep 17 00:00:00 2001 From: Ning Shang Date: Tue, 26 May 2026 13:35:19 -0700 Subject: [PATCH 1/2] GHA: update setup-go action to v6.4.0 Resolve some deprecation warnings. --- .github/workflows/sanity.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sanity.yml b/.github/workflows/sanity.yml index fa606a9..13b78e2 100644 --- a/.github/workflows/sanity.yml +++ b/.github/workflows/sanity.yml @@ -14,11 +14,12 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go-version: [1.24.x] + go-version: [1.26.x] os: [ubuntu-latest] steps: - name: "install golang" - uses: actions/setup-go@v5.0.0 + # v6.4.0 + uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c with: go-version: ${{ matrix.go-version }} cache: false @@ -97,11 +98,12 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go-version: [1.24.x] + go-version: [1.26.x] os: [ubuntu-latest] steps: - name: "install golang" - uses: actions/setup-go@v5.0.0 + # v6.4.0 + uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c with: go-version: ${{ matrix.go-version }} cache: false @@ -119,12 +121,13 @@ jobs: fail-fast: false # Run on linux and macos matrix: - go-version: [1.24.x] + go-version: [1.26.x] os: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - name: "install golang" - uses: actions/setup-go@v5.0.0 + # v6.4.0 + uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c with: go-version: ${{ matrix.go-version }} cache: false From d622f98d90aeaaedfa1f4eb0f1dc8361223c4fba Mon Sep 17 00:00:00 2001 From: Ning Shang Date: Tue, 26 May 2026 13:39:40 -0700 Subject: [PATCH 2/2] Update ncipollo/release-action to v1.21.0 Update release-action to v1.21.0 --- .github/workflows/canary.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 98aca48..a0ce084 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -26,8 +26,8 @@ jobs: ./r10edocker.tmp --version - name: "Release canary binaries" - # v1.14.0 - uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5 + # v1.21.0 + uses: ncipollo/release-action@339a81892b84b4eeb0f6e744e4574d79d0d9b8dd with: tag: "canary" name: "Canary" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a488c65..a315d7b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,8 +44,8 @@ jobs: fi - name: "Release versioned" - # v1.14.0 - uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5 + # v1.21.0 + uses: ncipollo/release-action@339a81892b84b4eeb0f6e744e4574d79d0d9b8dd with: allowUpdates: true generateReleaseNotes: true