From: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 24 Sep 2025 13:37:46 +0000 (+0800) Subject: chore(deps): update actions/github-script action to v8 (#13885) X-Git-Tag: v3.5.22~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f2487d86ea6c6075bc5330454c50998370cba031;p=thirdparty%2Fvuejs%2Fcore.git chore(deps): update actions/github-script action to v8 (#13885) --- diff --git a/.github/workflows/ecosystem-ci-trigger.yml b/.github/workflows/ecosystem-ci-trigger.yml index b3e963ece..824d8b714 100644 --- a/.github/workflows/ecosystem-ci-trigger.yml +++ b/.github/workflows/ecosystem-ci-trigger.yml @@ -10,7 +10,7 @@ jobs: if: github.repository == 'vuejs/core' && github.event.issue.pull_request && startsWith(github.event.comment.body, '/ecosystem-ci run') steps: - name: Check user permission - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const user = context.payload.sender.login @@ -45,7 +45,7 @@ jobs: throw new Error('not allowed') } - name: Get PR info - uses: actions/github-script@v7 + uses: actions/github-script@v8 id: get-pr-data with: script: | @@ -62,7 +62,7 @@ jobs: commit: pr.head.sha } - name: Trigger run - uses: actions/github-script@v7 + uses: actions/github-script@v8 id: trigger env: COMMENT: ${{ github.event.comment.body }}