From e975a8a88ec8da1b81297c0812869126c380623b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 00:36:56 +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/pr_build_comment.yml | 10 +++++----- .github/workflows/upload_github_release_asset.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pr_build_comment.yml b/.github/workflows/pr_build_comment.yml index 9b8f48a591e..fe37872dbdc 100644 --- a/.github/workflows/pr_build_comment.yml +++ b/.github/workflows/pr_build_comment.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - name: Make text for build comment id: comment-text - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const utils = require('./.github/githubUtils.js') @@ -23,7 +23,7 @@ jobs: run: unzip pr_number.zip - name: Get PR number id: pr-number - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const fs = require('fs'); @@ -31,14 +31,14 @@ jobs: return prNumber - name: Find build comment id: find-comment - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const utils = require('./.github/githubUtils.js') return await utils.findComment(github, context, ${{steps.pr-number.outputs.result}}) - name: Create build comment if: ${{!steps.find-comment.outputs.result}} - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -50,7 +50,7 @@ jobs: }) - name: Update build comment if: ${{steps.find-comment.outputs.result}} - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/upload_github_release_asset.yml b/.github/workflows/upload_github_release_asset.yml index 3575e938e7d..40099049cf5 100644 --- a/.github/workflows/upload_github_release_asset.yml +++ b/.github/workflows/upload_github_release_asset.yml @@ -21,7 +21,7 @@ jobs: with: name: ${{ inputs.filename }} path: dist - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 with: script: | const utils = require('./.github/githubUtils.js')