]> git.proxmox.com Git - cargo.git/commitdiff
chore: Set permissions for GitHub actions
authornaveen <172697+naveensrinivasan@users.noreply.github.com>
Sun, 3 Jul 2022 00:31:05 +0000 (00:31 +0000)
committernaveen <172697+naveensrinivasan@users.noreply.github.com>
Sun, 3 Jul 2022 00:31:05 +0000 (00:31 +0000)
 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.

- 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/)

Signed-off-by: naveen <172697+naveensrinivasan@users.noreply.github.com>
.github/workflows/contrib.yml
.github/workflows/main.yml

index b2b1b273464a93f4a6b9324869bb6bce2d1939d3..1872ae11ce623465ecc980522a4de40c5ce8d585 100644 (file)
@@ -4,8 +4,13 @@ on:
     branches:
       - master
 
+permissions:
+  contents: read
+
 jobs:
   deploy:
+    permissions:
+      contents: write  # for Git to git push
     runs-on: ubuntu-latest
     steps:
     - uses: actions/checkout@v3
index 67502ba88fdcd2ab837f959ee52757eab4375325..d5a311d2446a498c5fc931ac07b6df3a54b41390 100644 (file)
@@ -9,6 +9,9 @@ defaults:
   run:
     shell: bash
 
+permissions:
+  contents: read
+
 jobs:
   # Check Code style quickly by running `rustfmt` over all code
   rustfmt:
@@ -149,6 +152,8 @@ jobs:
         sh linkcheck.sh --all cargo
 
   success:
+    permissions:
+      contents: none
     name: bors build finished
     needs: [docs, rustfmt, test, resolver, build_std]
     runs-on: ubuntu-latest
@@ -156,6 +161,8 @@ jobs:
     steps:
     - run: echo ok
   failure:
+    permissions:
+      contents: none
     name: bors build finished
     needs: [docs, rustfmt, test, resolver, build_std]
     runs-on: ubuntu-latest