From 4815f1729d3b67b802c9adbe303e94aaddc0f495 Mon Sep 17 00:00:00 2001 From: gammazero <11790789+gammazero@users.noreply.github.com> Date: Fri, 6 Mar 2026 16:38:26 -1000 Subject: [PATCH] update workflows to use go1.26 --- .github/workflows/go-check.yml | 8 ++++---- .github/workflows/go-test.yml | 6 +++--- .github/workflows/integration.yml | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/go-check.yml b/.github/workflows/go-check.yml index 5deda6dd..9d0ec30a 100644 --- a/.github/workflows/go-check.yml +++ b/.github/workflows/go-check.yml @@ -9,19 +9,19 @@ jobs: runs-on: ubuntu-latest name: All steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 with: submodules: recursive - id: config uses: protocol/.github/.github/actions/read-config@master - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: - go-version: "1.25.x" + go-version: "1.26.x" - name: Run repo-specific setup uses: ./.github/actions/go-check-setup if: hashFiles('./.github/actions/go-check-setup') != '' - name: Install staticcheck - run: go install honnef.co/go/tools/cmd/staticcheck@b8ec13ce4d00445d75da053c47498e6f9ec5d7d6 # 2025.1.1 (v0.6.1) + run: go install honnef.co/go/tools/cmd/staticcheck@ff63afafc529279f454e02f1d060210bd4263951 # 2026.1 (v0.7.0) - name: Check that go.mod is tidy uses: protocol/multiple-go-modules@v1.4 with: diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index a84a3096..dfe0d602 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -10,18 +10,18 @@ jobs: fail-fast: false matrix: os: [ "ubuntu", "windows", "macos" ] - go: [ "1.25.x" ] + go: [ "1.26.x" ] env: COVERAGES: "" runs-on: ${{ fromJSON(vars[format('UCI_GO_TEST_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }} name: ${{ matrix.os }} (go ${{ matrix.go }}) steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 with: submodules: recursive - id: config uses: protocol/.github/.github/actions/read-config@master - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - name: Go information diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index b815303e..e7ecfca4 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -7,14 +7,14 @@ jobs: fail-fast: false matrix: os: [ "ubuntu", "macos" ] - go: [ "1.25.x" ] + go: [ "1.26.x" ] runs-on: ${{ matrix.os }}-latest name: Sharness (${{ matrix.os }} / go-${{ matrix.go }}) steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 with: submodules: recursive - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - name: Go information