diff --git a/.github/workflows/github-issue-sync.yml b/.github/workflows/github-issue-sync.yml index a13d036..cda1469 100644 --- a/.github/workflows/github-issue-sync.yml +++ b/.github/workflows/github-issue-sync.yml @@ -8,7 +8,7 @@ on: workflow_dispatch: inputs: excludeClosed: - description: 'Exclude closed issues in the sync.' + description: "Exclude closed issues in the sync." type: boolean default: true @@ -18,12 +18,12 @@ jobs: steps: - name: Generate token id: generate_token - uses: tibdex/github-app-token@v1 + uses: actions/create-github-app-token@v1 with: - app_id: ${{ secrets.PROJECT_APP_ID }} - private_key: ${{ secrets.PROJECT_APP_KEY }} + app-id: ${{ secrets.PROJECT_APP_ID }} + private-key: ${{ secrets.PROJECT_APP_KEY }} - name: Sync issues - uses: paritytech/github-issue-sync@v0.3 + uses: paritytech/github-issue-sync@v0.3.2 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PROJECT_TOKEN: ${{ steps.generate_token.outputs.token }}