diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-02-02 12:39:35 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-02-02 13:00:46 -0800 |
| commit | c4ddbe043ebfecba68943e1b38b9d6c179e734da (patch) | |
| tree | e01a27ce84344aa7d867cda1977c395f6ce1d62c /.github/workflows | |
| parent | GitHub Actions: update to checkout@v4 (diff) | |
| download | git-c4ddbe043ebfecba68943e1b38b9d6c179e734da.tar.gz git-c4ddbe043ebfecba68943e1b38b9d6c179e734da.zip | |
GitHub Actions: update to github-script@v7
We seem to be getting "Node.js 16 actions are deprecated." warnings
for jobs that use github-script@v6. Update to github-script@v7,
which is said to use Node.js 20.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d119a63b93..c7b04a521b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -63,7 +63,7 @@ jobs: echo "skip_concurrent=$skip_concurrent" >>$GITHUB_OUTPUT - name: skip if the commit or tree was already tested id: skip-if-redundant - uses: actions/github-script@v6 + uses: actions/github-script@v7 if: steps.check-ref.outputs.enabled == 'yes' with: github-token: ${{secrets.GITHUB_TOKEN}} |
