aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-02-02 12:39:35 -0800
committerJohannes Schindelin <johannes.schindelin@gmx.de>2024-04-17 00:00:57 +0200
commitf6bed64ce2f645c773b1320cb2cd555600468ec7 (patch)
tree3b3ecdc9ad3ba0402cfb8a7f9fc67e00f29288fb
parentce47f7c85f6a69b3c9a97f6b97dbed66069142c4 (diff)
downloadgit-f6bed64ce2f645c773b1320cb2cd555600468ec7.tar.gz
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. Backported-from: c4ddbe043e (GitHub Actions: update to github-script@v7, 2024-02-02) Signed-off-by: Junio C Hamano <gitster@pobox.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-rw-r--r--.github/workflows/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index ea6000b40c..aedb6b0ced 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -46,7 +46,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}}