From 1e6da0ea645699ab173ce4b82621d5caeb42e69a Mon Sep 17 00:00:00 2001 From: Kent Gruber Date: Wed, 29 Oct 2025 13:51:02 -0400 Subject: [PATCH] Set explicit permissions for GitHub Actions workflows This change was made by an automated process to ensure all GitHub Actions workflows have explicitly defined permissions as per best practices. --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 285462f9..59a16b29 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,5 +1,7 @@ name: Pull Request Pipeline on: [pull_request] +permissions: + contents: read jobs: tests: runs-on: ubuntu-latest