diff options
author | James McCoy <jamessan@jamessan.com> | 2022-02-12 07:09:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-12 07:09:43 -0500 |
commit | e126fbc97117171cf0e0afe5ded707fa27f16b83 (patch) | |
tree | 718bb28302cf46568a1ccd4dc498082036445eda | |
parent | dd2c0a7d33c6843fa0a83f382be1943ca750e228 (diff) | |
parent | f052e0bd11de95705f9eba53f42e3c69354992e3 (diff) | |
download | rneovim-e126fbc97117171cf0e0afe5ded707fa27f16b83.tar.gz rneovim-e126fbc97117171cf0e0afe5ded707fa27f16b83.tar.bz2 rneovim-e126fbc97117171cf0e0afe5ded707fa27f16b83.zip |
Merge pull request #17376 from dundargoc/ci/reviews/upgrade-to-v6
ci(reviews): upgrade github-script version to v6
-rw-r--r-- | .github/workflows/reviews.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/reviews.yml b/.github/workflows/reviews.yml index 965adc2ab0..e2253988ba 100644 --- a/.github/workflows/reviews.yml +++ b/.github/workflows/reviews.yml @@ -13,7 +13,7 @@ jobs: steps: - if: github.event_name == 'workflow_run' name: 'Download artifact with PR number' - uses: actions/github-script@v5 + uses: actions/github-script@v6 with: script: | let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ @@ -38,7 +38,7 @@ jobs: run: unzip pr_number.zip - name: 'Request reviewers' - uses: actions/github-script@v5 + uses: actions/github-script@v6 with: script: | // The number of the pull request that triggered this run. If label |