From 92339853d36d106225c98f740cd402cac6d63400 Mon Sep 17 00:00:00 2001 From: Austin Bennett Date: Mon, 31 Aug 2026 19:27:02 -0500 Subject: [PATCH] Bump reuse-action to v5 so CI understands REUSE.toml reuse-action@v3 runs reuse 3.x, which predates REUSE.toml and flagged every file the annotations cover - the actual reason the REUSE job never passed. v5 matches the reuse 5.x used to verify locally. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_019FXfh48mASRsE1WEhy9jcM --- .github/workflows/lint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index cc4d2d8..3a3c2ab 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,8 +16,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + # v3 ships reuse 3.x, which predates REUSE.toml support and flags + # every file the annotations cover; v5 (reuse 5.x) understands it. - name: REUSE Compliance Check - uses: fsfe/reuse-action@v3 + uses: fsfe/reuse-action@v5 clang-format: name: clang-format