Skip to content

Commit eb1e3ef

Browse files
committed
Update workflows
1 parent a4adb62 commit eb1e3ef

File tree

8 files changed

+26
-11
lines changed

8 files changed

+26
-11
lines changed

.github/workflows/php_composer_normalize.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: "Composer Normalize"
22

33
on:
4-
pull_request_target: {}
4+
pull_request: {}
55
push:
66
branches:
77
- 1.x
88

9+
permissions: {}
10+
911
jobs:
1012
normalize:
1113
runs-on: ubuntu-latest

.github/workflows/php_composer_validate.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: "Composer Validate"
22

33
on:
4-
pull_request_target: {}
4+
pull_request: {}
55
push:
66
branches:
77
- 1.x
88

9+
permissions: {}
10+
911
jobs:
1012
validate:
1113
runs-on: ubuntu-latest

.github/workflows/php_pest.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: "PEST"
22

33
on:
4-
pull_request_target: {}
4+
pull_request: {}
55
push:
66
branches:
77
- 1.x
88

9+
permissions: {}
10+
911
jobs:
1012
pest:
1113
runs-on: ubuntu-latest

.github/workflows/php_phpcsf.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: "PHP CS Fixer"
22

33
on:
4-
pull_request_target: {}
4+
pull_request: {}
55
push:
66
branches:
77
- 1.x
88

9+
permissions: {}
10+
911
jobs:
1012
phpcsf:
1113
runs-on: ubuntu-latest

.github/workflows/php_phpstan.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: "PHPStan"
22

33
on:
4-
pull_request_target: {}
4+
pull_request: {}
55
push:
66
branches:
77
- 1.x
88

9+
permissions: {}
10+
911
jobs:
1012
phpstan:
1113
runs-on: ubuntu-latest

.github/workflows/php_psalm.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: "Psalm"
22

33
on:
4-
pull_request_target: {}
4+
pull_request: {}
55
push:
66
branches:
77
- 1.x
88

9+
permissions: {}
10+
911
jobs:
1012
psalm:
1113
runs-on: ubuntu-latest

.github/workflows/php_rector.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: "Rector"
22

33
on:
4-
pull_request_target: {}
4+
pull_request: {}
55
push:
66
branches:
77
- 1.x
88

9+
permissions: {}
10+
911
jobs:
1012
rector:
1113
runs-on: ubuntu-latest
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: "Dependency Review"
2-
on: [pull_request_target]
32

4-
permissions:
5-
contents: read
3+
on:
4+
pull_request: {}
5+
6+
permissions: {}
67

78
jobs:
89
dependency-review:
@@ -11,4 +12,4 @@ jobs:
1112
- name: "Checkout Repository"
1213
uses: actions/checkout@v3
1314
- name: "Dependency Review"
14-
uses: actions/dependency-review-action@v2
15+
uses: actions/dependency-review-action@v3

0 commit comments

Comments
 (0)