Skip to content

Commit 8746053

Browse files
authored
docs(README): fix use of deprecated arguments (actions#86)
Using those fields that have an underscore (instead of a hyphen) cause the following warnings if used: ``` Warning: Input 'app_id' has been deprecated with message: 'app_id' is deprecated and will be removed in a future version. Use 'app-id' instead. Warning: Input 'private_key' has been deprecated with message: 'private_key' is deprecated and will be removed in a future version. Use 'private-key' instead. ``` So this PR just drops the last use of `app_id` and `private_key` from the README in favor of `app-id` and `private-key`.
1 parent 46e4a50 commit 8746053

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,8 @@ jobs:
157157
- uses: actions/create-github-app-token@v1
158158
id: app-token
159159
with:
160-
app_id: ${{ vars.APP_ID }}
161-
private_key: ${{ secrets.PRIVATE_KEY }}
160+
app-id: ${{ vars.APP_ID }}
161+
private-key: ${{ secrets.PRIVATE_KEY }}
162162
owner: ${{ matrix.owners-and-repos.owner }}
163163
repositories: ${{ join(matrix.owners-and-repos.repos) }}
164164
- uses: octokit/[email protected]

0 commit comments

Comments
 (0)