From 873f18cf6bebe1dca2288a86e62505b585ed9fcc Mon Sep 17 00:00:00 2001 From: Dylan Ravel Date: Wed, 17 Dec 2025 13:08:37 -0700 Subject: [PATCH] Add permissions to GitHub Actions workflow Set explicit 'contents: read' permissions in the test.yml workflow to improve security and follow best practices. --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b624ab1..527134c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,6 +6,9 @@ on: pull_request: branches: [ main ] +permissions: + contents: read + jobs: test: strategy: