diff --git a/.github/workflows/Auto-Assign.yml b/.github/workflows/Auto-Assign.yml index c038631..17d8369 100644 --- a/.github/workflows/Auto-Assign.yml +++ b/.github/workflows/Auto-Assign.yml @@ -18,7 +18,7 @@ jobs: if: contains(github.event.issue.labels.*.name, 'New-Project') steps: - name: Generate app token - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 id: authenticate with: app-id: ${{ secrets.APP_ID }} diff --git a/.github/workflows/assign.yml b/.github/workflows/assign.yml index 502cedd..158321c 100644 --- a/.github/workflows/assign.yml +++ b/.github/workflows/assign.yml @@ -17,7 +17,7 @@ jobs: if: contains(github.event.issue.labels.*.name, 'create-repo') && github.event.action == 'opened' steps: - name: Generate app token - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 id: authenticate with: app-id: ${{ secrets.APP_ID }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dcda21e..cb9f4cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: environment: prod steps: - name: Generate app token - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 id: authenticate with: app-id: ${{ secrets.APP_ID }} diff --git a/.github/workflows/fulfill.yml b/.github/workflows/fulfill.yml index 25d96ef..2e5be30 100644 --- a/.github/workflows/fulfill.yml +++ b/.github/workflows/fulfill.yml @@ -24,7 +24,7 @@ jobs: environment: prod steps: - name: Generate app token - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 id: authenticate with: app-id: ${{ secrets.APP_ID }} diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 28ad4f8..aca9604 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -14,7 +14,7 @@ jobs: if: contains(github.event.issue.labels.*.name, 'create-repo') && github.event.issue.state == 'open' steps: - name: Generate app token - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 id: authenticate with: app-id: ${{ secrets.APP_ID }} @@ -264,7 +264,7 @@ jobs: gh pr merge $prNumber --auto --delete-branch --squash --repo $env:GITHUB_REPOSITORY - name: Generate app token - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 id: authenticate_approver with: app-id: ${{ secrets.APPROVER_APP_ID }}