From 3827623997b1c5be5681193127188f042a53b6b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juli=C3=A1n=20Gonz=C3=A1lez?= Date: Tue, 22 Sep 2026 14:55:11 -0700 Subject: [PATCH] Drop the repo-local go-lint job; managed verify lints this repo The managed verify.yaml already runs golangci-lint at the fleet pin, so this job linted the same code a second time with its own pin. That pin, v2.11.4, is built with go1.26 and refuses to load its config for a go1.27 module, which this repo becomes with baton-sdk v0.32.0. Co-Authored-By: Claude Fable 5.1 --- .github/workflows/ci.yaml | 14 -------------- .github/workflows/main.yaml | 14 -------------- 2 files changed, 28 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 00cf9421..a95dd843 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,20 +1,6 @@ name: ci on: pull_request jobs: - go-lint: - runs-on: ubuntu-latest - steps: - - name: Install Go - uses: actions/setup-go@v5 - with: - go-version: 1.25.x - - name: Checkout code - uses: actions/checkout@v4 - - name: Run linters - uses: golangci/golangci-lint-action@v9 - with: - version: v2.11.4 - args: --timeout=10m go-test: strategy: matrix: diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 4504185e..d1013602 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -4,20 +4,6 @@ on: branches: - main jobs: - go-lint: - runs-on: ubuntu-latest - steps: - - name: Install Go - uses: actions/setup-go@v5 - with: - go-version: 1.25.x - - name: Checkout code - uses: actions/checkout@v4 - - name: Run linters - uses: golangci/golangci-lint-action@v9 - with: - version: v2.11.4 - args: --timeout=10m go-test: strategy: matrix: