diff --git a/.github/workflows/feature-popularity.yml b/.github/workflows/feature-popularity.yml index 2b7025c96d81f7d0766c545257c4f99725b81f17..0352acf3ce0774205cca2a00eae11020d99a83ca 100644 --- a/.github/workflows/feature-popularity.yml +++ b/.github/workflows/feature-popularity.yml @@ -15,7 +15,7 @@ jobs: if: github.event_name == 'issues' && github.event.action == 'opened' && contains(github.event.issue.labels.*.name, 'enhancement') runs-on: ubuntu-latest steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v9 with: github-token: ${{ secrets.HOMEBREW_GITHUB_TOKEN }} script: | @@ -35,7 +35,7 @@ jobs: if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' runs-on: ubuntu-latest steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v9 with: github-token: ${{ secrets.HOMEBREW_GITHUB_TOKEN }} script: | diff --git a/.github/workflows/needs-response.yml b/.github/workflows/needs-response.yml index c1cd71cb6b6d6d1f3a1b9325a64578dc18722448..a0b0199a261b63617b037151968f1478f12bc47b 100644 --- a/.github/workflows/needs-response.yml +++ b/.github/workflows/needs-response.yml @@ -16,7 +16,7 @@ jobs: if: > contains(fromJSON('["OWNER","MEMBER","COLLABORATOR"]'), github.event.comment.author_association) && github.event.comment.user.login != github.event.issue.user.login - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.HOMEBREW_GITHUB_TOKEN }} script: | @@ -29,7 +29,7 @@ jobs: - name: Remove needs-response when issue author replies if: github.event.comment.user.login == github.event.issue.user.login - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.HOMEBREW_GITHUB_TOKEN }} script: |