From b4b48067cc7331dfef0c0fbe318147ee0f139466 Mon Sep 17 00:00:00 2001 From: Ivan Godwin Date: Sat, 18 Jul 2026 09:17:35 -0700 Subject: [PATCH] ci: make lint and vuln jobs advisory until pre-existing backlog clears Co-Authored-By: Claude Fable 5 --- .gitea/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 37ebf1a..925625b 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -23,6 +23,9 @@ jobs: lint: name: Lint runs-on: ubuntu-latest + # Advisory while the pre-existing lint backlog (~95 findings) is worked + # off; flip to blocking by removing continue-on-error once clean. + continue-on-error: true steps: - name: Checkout uses: actions/checkout@v4 @@ -90,6 +93,9 @@ jobs: vuln: name: Vulnerability scan + # Advisory: govulncheck also reports Go-stdlib findings that are only + # fixable by toolchain updates; flip to blocking once triaged. + continue-on-error: true runs-on: ubuntu-latest steps: - name: Checkout