Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
# Replace `APP_PEM` with the name of the secret that contains your app private key.
- name: Generate token
id: generate-token
uses: actions/create-github-app-token@v1
uses: actions/create-github-app-token@v2
with:
app-id: {% raw %}${{ vars.APP_ID }}{% endraw %}
private-key: {% raw %}${{ secrets.APP_PEM }}{% endraw %}
Expand Down
6 changes: 3 additions & 3 deletions content/rest/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ If you are authenticating with a {% data variables.product.prodname_github_app %
steps:
- name: Generate token
id: generate-token
uses: actions/create-github-app-token@v1
uses: actions/create-github-app-token@v2
with:
app-id: {% raw %}${{ vars.APP_ID }}{% endraw %}
private-key: {% raw %}${{ secrets.APP_PEM }}{% endraw %}
Expand Down Expand Up @@ -227,7 +227,7 @@ If you are authenticating with a {% data variables.product.prodname_github_app %

- name: Generate token
id: generate-token
uses: actions/create-github-app-token@v1
uses: actions/create-github-app-token@v2
with:
app-id: {% raw %}${{ vars.APP_ID }}{% endraw %}
private-key: {% raw %}${{ secrets.APP_PEM }}{% endraw %}
Expand Down Expand Up @@ -321,7 +321,7 @@ If you are authenticating with a {% data variables.product.prodname_github_app %
steps:
- name: Generate token
id: generate-token
uses: actions/create-github-app-token@v1
uses: actions/create-github-app-token@v2
with:
app-id: {% raw %}${{ vars.APP_ID }}{% endraw %}
private-key: {% raw %}${{ secrets.APP_PEM }}{% endraw %}
Expand Down
Loading