From 7616190aa4c41c738c53d11d4ef37e70551c39cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= Date: Sat, 3 Feb 2024 17:21:54 +0100 Subject: [PATCH] github/workflows: revert to github-script@v6 There is an upstream regression in v7. Use v6 until Node 16 is still available. See: https://github.com/actions/github-script/issues/448 --- .github/workflows/comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/comment.yml b/.github/workflows/comment.yml index a837237372ea7..7f9603a7536b7 100644 --- a/.github/workflows/comment.yml +++ b/.github/workflows/comment.yml @@ -10,7 +10,7 @@ jobs: if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' runs-on: ubuntu-latest steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v6 with: script: | const { owner, repo } = context.repo;