diff options
author | Daniel Hofstetter <daniel.hofstetter@42dh.com> | 2023-11-14 07:12:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-14 07:12:41 +0100 |
commit | a3af2230a64d3b60832ce9944df5388a5ba9128a (patch) | |
tree | af24f4e3fafaea26b8f9816e1a26840d0656eef0 | |
parent | ecd9a4ea3880c0f4c48e1bdb2b759184f98229f0 (diff) | |
parent | 1f40cd69c80380192cde49bdfc6c4437f4a0e061 (diff) |
Merge pull request #5528 from uutils/renovate/actions-github-script-7.x0.0.23
chore(deps): update actions/github-script action to v7
-rw-r--r-- | .github/workflows/GnuComment.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/GnuComment.yml b/.github/workflows/GnuComment.yml index bb64232a99..36c54490ce 100644 --- a/.github/workflows/GnuComment.yml +++ b/.github/workflows/GnuComment.yml @@ -18,7 +18,7 @@ jobs: github.event.workflow_run.event == 'pull_request' steps: - name: 'Download artifact' - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | // List all artifacts from GnuTests @@ -43,7 +43,7 @@ jobs: - run: unzip comment.zip - name: 'Comment on PR' - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | |