From c0c955bf348f512eaf933ea1af3dd2aaa0863349 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 00:33:20 +0000 Subject: [PATCH] Bump actions/github-script from 6 to 7 Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/Remove_labels.yml | 4 ++-- .github/workflows/build_doc.yml | 10 +++++----- .github/workflows/filter_testsuite.yml | 4 ++-- .github/workflows/wiki_notification.yml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/Remove_labels.yml b/.github/workflows/Remove_labels.yml index 0624fe7a1dfa..ef2127e6e47c 100644 --- a/.github/workflows/Remove_labels.yml +++ b/.github/workflows/Remove_labels.yml @@ -10,7 +10,7 @@ jobs: name: remove label steps: - name: removelabel - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -21,7 +21,7 @@ jobs: name: "Tested", }); - name: Post address - uses: actions/github-script@v6 + uses: actions/github-script@v7 if: ${{ success() }} with: script: | diff --git a/.github/workflows/build_doc.yml b/.github/workflows/build_doc.yml index 85158cfc285e..cfb36e8a232f 100644 --- a/.github/workflows/build_doc.yml +++ b/.github/workflows/build_doc.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 id: get_round with: result-encoding: string @@ -38,7 +38,7 @@ jobs: } } return 'stop' - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 if: steps.get_round.outputs.result != 'stop' id: get_pr_number with: @@ -49,7 +49,7 @@ jobs: return pr_number - name: Emoji-comment - uses: actions/github-script@v6 + uses: actions/github-script@v7 if: steps.get_round.outputs.result != 'stop' with: script: | @@ -136,7 +136,7 @@ jobs: fi - name: Post address - uses: actions/github-script@v6 + uses: actions/github-script@v7 if: ${{ success() && steps.get_round.outputs.result != 'stop' }} with: script: | @@ -154,7 +154,7 @@ jobs: - name: Post error env: ERRORMSG: ${{steps.build_and_run.outputs.DoxygenError}} - uses: actions/github-script@v6 + uses: actions/github-script@v7 if: ${{ failure() && steps.get_round.outputs.result != 'stop' }} with: script: | diff --git a/.github/workflows/filter_testsuite.yml b/.github/workflows/filter_testsuite.yml index 48e4f39d65c3..4aaf03a31405 100644 --- a/.github/workflows/filter_testsuite.yml +++ b/.github/workflows/filter_testsuite.yml @@ -14,7 +14,7 @@ jobs: if: (github.event.comment.user.login == 'sloriot' || github.event.comment.user.login == 'lrineau') && contains(github.event.comment.body, '/testme') runs-on: ubuntu-latest steps: - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 id: get_label with: result-encoding: string @@ -63,7 +63,7 @@ jobs: ssh ${HOST} "${PATH_TO_SCRIPT}/run_testsuite_from_branch_name.sh $USER_NAME $BRANCH_NAME $BASE $PR_NUMBER" done - name: Post address - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const address = "Testsuite launched. Results will appear on the following page: https://cgal.geometryfactory.com/~cgaltest/test_suite/TESTRESULTS/index.shtml " diff --git a/.github/workflows/wiki_notification.yml b/.github/workflows/wiki_notification.yml index 456fefa51e39..6438af78168f 100644 --- a/.github/workflows/wiki_notification.yml +++ b/.github/workflows/wiki_notification.yml @@ -9,7 +9,7 @@ jobs: messages: ${{ steps.set-result.outputs.result }} steps: - name: get informations and prepare email - uses: actions/github-script@v6 + uses: actions/github-script@v7 id: set-result with: result-encoding: string