From aabc1e4ae6d7932a691bcd20eec9678e88853741 Mon Sep 17 00:00:00 2001 From: Kent Gruber Date: Mon, 27 Oct 2025 13:17:23 -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/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 928c838..7181c5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,8 @@ on: branches: - main - "releases/*" +permissions: + contents: read jobs: build-lint-test: @@ -67,4 +69,4 @@ jobs: - name: Check format age-estimation run: dotnet format --verify-no-changes - working-directory: samples/age-estimation/Worker \ No newline at end of file + working-directory: samples/age-estimation/Worker