From 362b87aa4d1779bcc522b8afbb8fe267b1110b1d Mon Sep 17 00:00:00 2001 From: Martin Oppitz <6279703+deleonio@users.noreply.github.com> Date: Fri, 2 May 2025 04:50:09 +0200 Subject: [PATCH] chore: update GitHub app token action to v2 in workflows --- .github/workflows/cla.yml | 4 ++-- .github/workflows/publish.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 92d45ab618..d4f9e98424 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -12,12 +12,12 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Create GitHub app token' - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v2 id: app-token with: app-id: ${{ secrets.APP_ID }} private-key: ${{ secrets.PRIVATE_KEY }} - repositories: "public-ui.github.io,.github-private" + repositories: 'public-ui.github.io,.github-private' - name: 'CLA Assistant' if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4567f346c0..9f682d26fc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ jobs: permissions: packages: write steps: - - uses: actions/create-github-app-token@v1 + - uses: actions/create-github-app-token@v2 id: app-token with: app-id: ${{ secrets.APP_ID }}