Skip to content

Commit c67c2b2

Browse files
committed
Configure fine-grained GitHub Action permissions
This change configures GitHub Actions to only allow reading the repository contents within the top-level workflow-wide permissions section. Extended permissions are then granted to individual jobs to make permissions “secure by default” even when additional jobs are added to an existing workflow. As a follow-up to this PR, the “Workflow Permissions” in the repository settings should be reconfigured to “Read repository contents and packages permissions” instead of “Read and write permissions” to also make additional workflows secure by default, even when a permissions section is not explicitly configured.
1 parent 9081d5c commit c67c2b2

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

.github/workflows/continuous-integration.yml

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
pull_request:
55
push:
66

7+
permissions:
8+
contents: read
9+
710
jobs:
811
unit-tests:
912
runs-on: ${{ matrix.operating-system }}

.github/workflows/docs.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,8 @@ on:
88
# Allows you to run this workflow manually from the Actions tab
99
workflow_dispatch:
1010

11-
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
1211
permissions:
1312
contents: read
14-
pages: write
15-
id-token: write
1613

1714
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
1815
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
@@ -52,6 +49,12 @@ jobs:
5249
url: ${{ steps.deployment.outputs.page_url }}
5350
runs-on: ubuntu-latest
5451
needs: build
52+
permissions:
53+
contents: read
54+
# pages:write is required to deploy to GitHub pages.
55+
pages: write
56+
# id-token:write is required to deploy to GitHub pages.
57+
id-token: write
5558
steps:
5659
- name: Deploy to GitHub Pages
5760
id: deployment

.github/workflows/release-unsigned-phar.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ name: "Release unsigned PHAR"
33
on:
44
workflow_call:
55

6-
jobs:
6+
permissions:
7+
contents: read
78

9+
jobs:
810
build-phar:
911
runs-on: ${{ matrix.operating-system }}
1012
strategy:

.github/workflows/release.yml

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
types:
66
- published
77

8+
permissions:
9+
contents: read
10+
811
jobs:
912
release-phar:
1013
runs-on: ${{ matrix.operating-system }}
@@ -14,6 +17,9 @@ jobs:
1417
- ubuntu-latest
1518
php-versions:
1619
- '8.1'
20+
permissions:
21+
# contents:write is required to upload the binaries to the release.
22+
contents: write
1723
steps:
1824
- name: Setup PHP
1925
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)