From cb5763cd952d1dadf7602d8413e81a075678e0f7 Mon Sep 17 00:00:00 2001 From: Aurel Avramescu Date: Tue, 4 Nov 2025 10:32:13 +0100 Subject: [PATCH 1/2] chore(security): Potential fix for code scanning alert no. 1: Workflow does not contain permissions Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 178ee8b..4a8421a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,6 @@ name: Release +permissions: + contents: read on: workflow_dispatch From 089524de389db960930d6584222d840d122ade50 Mon Sep 17 00:00:00 2001 From: Aurel Avramescu Date: Tue, 4 Nov 2025 10:33:27 +0100 Subject: [PATCH 2/2] chore(security): Potential fix for code scanning alert no. 1: Workflow does not contain permissions --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4a8421a..6b73956 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,11 +1,11 @@ name: Release -permissions: - contents: read on: workflow_dispatch jobs: build: + permissions: + contents: write runs-on: ubuntu-latest steps: - name: Checkout sources