Skip to content

Commit

Permalink
ci: migrate to official create app token action
Browse files Browse the repository at this point in the history
  • Loading branch information
zeshuaro committed Jun 20, 2024
1 parent 750839e commit 3d281e9
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/post-dependency-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,17 @@ jobs:

steps:
- name: Create GitHub App token 🔑
id: create-app-token
uses: tibdex/github-app-token@v2.1.0
id: app-token
uses: actions/create-github-app-token@v1
with:
app_id: ${{ secrets.GH_APP_ID }}
private_key: ${{ secrets.GH_APP_PRIVATE_KEY }}
app-id: ${{ secrets.GH_APP_ID }}
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}

- name: Checkout 🛎️
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
token: ${{ steps.create-app-token.outputs.token }}
token: ${{ steps.app-token.outputs.token }}
persist-credentials: false

- name: Get project Flutter version 🏷️
id: fvm-config
Expand Down

0 comments on commit 3d281e9

Please sign in to comment.