From cee04df7ffc823c7b434284e20c332db6a9404b5 Mon Sep 17 00:00:00 2001 From: Kent Gruber Date: Mon, 27 Oct 2025 13:15:40 -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 7893f89..3dbcfc1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,6 +4,8 @@ on: push: branches: - main +permissions: + contents: read jobs: build-and-test: @@ -58,4 +60,4 @@ jobs: - name: Build testing-code run: go build - working-directory: exercises/testing-code/solution/worker \ No newline at end of file + working-directory: exercises/testing-code/solution/worker