From f300931212711c94eecc65df0f7fad0a5a0f2691 Mon Sep 17 00:00:00 2001 From: silverwind Date: Tue, 24 Feb 2026 15:28:30 +0100 Subject: [PATCH] Replace golangci-lint action and megalinter with make lint-go The megalinter ghcr.io image pull is denied, and the golangci-lint action version was inconsistent with the Makefile-pinned version. Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/checks.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.gitea/workflows/checks.yml b/.gitea/workflows/checks.yml index 23699159..b83710b8 100644 --- a/.gitea/workflows/checks.yml +++ b/.gitea/workflows/checks.yml @@ -25,14 +25,7 @@ jobs: with: go-version-file: go.mod check-latest: true - - uses: golangci/golangci-lint-action@v8.0.0 - - uses: megalinter/megalinter/flavors/go@v9.1.0 - env: - DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - VALIDATE_ALL_CODEBASE: false - GITHUB_STATUS_REPORTER: ${{ !env.ACT }} - GITHUB_COMMENT_REPORTER: ${{ !env.ACT }} + - run: make lint-go test-linux: name: test-linux