From 066486323b8b6e8c4088a5e896a61459a78dcd0a Mon Sep 17 00:00:00 2001 From: wwqgtxx Date: Sat, 18 Apr 2026 22:27:16 +0800 Subject: [PATCH] switch to official github action to obtain app token --- .github/workflows/update-dependencies.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-dependencies.yaml b/.github/workflows/update-dependencies.yaml index fb9a3963..d634c234 100644 --- a/.github/workflows/update-dependencies.yaml +++ b/.github/workflows/update-dependencies.yaml @@ -57,11 +57,12 @@ jobs: update-go-mod-replace ${{ github.workspace }}/core/src/foss/golang/clash/go.mod $(pwd)/go.mod go mod tidy - - uses: tibdex/github-app-token@v2 + - uses: actions/create-github-app-token@v3 id: generate-token with: - app_id: ${{ secrets.MAINTAINER_APPID }} - private_key: ${{ secrets.MAINTAINER_APP_PRIVATE_KEY }} + client-id: ${{ secrets.MAINTAINER_APPID }} + private-key: ${{ secrets.MAINTAINER_APP_PRIVATE_KEY }} + owner: ${{ github.repository_owner }} - name: Create Pull Request id: cpr