From c4ce56872f95bfacfb4563bef0e36ff23c3a3b84 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Dec 2025 13:27:05 +0000 Subject: [PATCH] Add explicit permissions to Tcl lint workflow Added explicit 'contents: read' permission to the workflow to follow security best practices and address CodeQL security alert. Co-authored-by: nikosavola <7860886+nikosavola@users.noreply.github.com> --- .github/workflows/tcl-lint.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tcl-lint.yaml b/.github/workflows/tcl-lint.yaml index 9c78edbd..d616b680 100644 --- a/.github/workflows/tcl-lint.yaml +++ b/.github/workflows/tcl-lint.yaml @@ -6,6 +6,8 @@ jobs: tcl-lint: runs-on: ubuntu-latest name: Tcl Code Quality + permissions: + contents: read steps: - name: Checkout source