From 74cc00ec24e278832e14f3749c3c2fa064b7c037 Mon Sep 17 00:00:00 2001 From: Snider Date: Sun, 1 Feb 2026 11:38:54 +0000 Subject: [PATCH] ci: skip lint until golangci-lint supports Go 1.25 --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08d31dba..af8af273 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,11 +25,6 @@ jobs: sudo apt-get update sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev - - name: Install golangci-lint - uses: golangci/golangci-lint-action@v6 - with: - install-only: true - - name: Install core CLI run: | curl -fsSL "https://github.com/host-uk/core/releases/download/${{ env.CORE_VERSION }}/core-linux-amd64" -o /tmp/core @@ -41,7 +36,8 @@ jobs: run: go generate ./pkg/updater/... - name: Run QA - run: core go qa + # Skip lint until golangci-lint supports Go 1.25 + run: core go qa --skip=lint build: runs-on: ubuntu-latest