Skip to content

Commit 06e9ead

Browse files
authored
fix: explicit permisions on actions (#1978)
Found nothing vulnerable found in actions, just tightening up the permissions across all our publicly facing repos. Not clear why pull_request_target is being used. Ready to revert if needed
1 parent 091aef9 commit 06e9ead

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

.github/workflows/conventional-commits.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- master
77
- release/*
88

9-
pull_request_target:
9+
pull_request:
1010
branches:
1111
- master
1212
- release/*
@@ -31,7 +31,7 @@ jobs:
3131
sparse-checkout: |
3232
.github
3333
34-
- if: ${{ github.event_name == 'pull_request_target' }}
34+
- if: ${{ github.event_name == 'pull_request' }}
3535
run: |
3636
set -ex
3737

.github/workflows/dogfooding.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@ on:
44
pull_request_review:
55
types: [submitted, edited]
66

7-
pull_request_target:
7+
pull_request:
88
types:
99
- opened
1010
branches:
1111
- '*'
1212

13+
permissions:
14+
contents: read
15+
1316
jobs:
1417
check_dogfooding:
1518
runs-on: ubuntu-latest

.github/workflows/publish.yml

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
required: true
88
type: string
99

10+
permissions:
11+
contents: read
12+
1013
jobs:
1114
publish:
1215
runs-on: ubuntu-latest

.github/workflows/release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
- master
77
- release/*
88

9+
permissions:
10+
contents: read
11+
912
jobs:
1013
release_please:
1114
runs-on: ubuntu-latest

.github/workflows/test.yml

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
- master
88
tags: ["*"]
99

10+
permissions:
11+
contents: read
12+
1013
jobs:
1114
test:
1215
strategy:

0 commit comments

Comments
 (0)