Skip to content

Commit 38b2f8c

Browse files
committed
Use GITHUB_TOKEN so that secrets can be passed to PRs
1 parent f79b000 commit 38b2f8c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test-coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
composer-
5858
5959
- name: Setup Composer's GitHub OAuth access
60-
run: composer config --global github-oauth.github.com ${{ secrets.ACCESS_TOKEN }}
60+
run: composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
6161

6262
- name: Install dependencies on tools
6363
run: composer update --ansi --no-interaction

.github/workflows/test-phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
phpstan-
7070
7171
- name: Setup Composer's GitHub OAuth access
72-
run: composer config --global github-oauth.github.com ${{ secrets.ACCESS_TOKEN }}
72+
run: composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
7373

7474
- name: Install dependencies
7575
run: composer update --ansi --no-interaction

.github/workflows/test-phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
composer-
5858
5959
- name: Setup Composer's GitHub OAuth access
60-
run: composer config --global github-oauth.github.com ${{ secrets.ACCESS_TOKEN }}
60+
run: composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
6161

6262
- name: Install dependencies
6363
run: composer update --ansi --no-interaction

0 commit comments

Comments
 (0)