From: naveensrinivasan Date: Thu, 7 Apr 2022 23:00:53 +0000 (+0000) Subject: Set permissions for GitHub actions X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=b742118cd135d9d1c4322984b3c7a4977c0f3cf3;p=stevenblack-hosts.git Set permissions for GitHub actions - Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. Signed-off-by: naveensrinivasan --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8467f364..2bd1678e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,9 @@ on: pull_request: workflow_dispatch: +permissions: + contents: read + jobs: test: name: Python ${{ matrix.python }} on ${{ matrix.os }}