From 2feff6b0f909a3d4e0727b5d077fd3ab6a02dca9 Mon Sep 17 00:00:00 2001 From: Dmitrii Gridnev Date: Tue, 13 Jan 2026 17:21:11 +0300 Subject: [PATCH] chore: update GitHub Actions workflow permissions - Added write permissions for contents in the build-n-publish job of the Python package workflow. This change ensures that the workflow has the necessary permissions to publish artifacts effectively. --- .github/workflows/pythonpackage.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index bcdf4a12..7f6e6039 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -50,6 +50,8 @@ jobs: tox build-n-publish: runs-on: ubuntu-latest + permissions: + contents: write needs: test strategy: max-parallel: 1