From 47365e5ad43f616993cb9950969dce9627290f14 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 21:44:01 +0000 Subject: [PATCH] :arrow_up: github-actions(deps): 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] --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index c81d793..5c55f80 100644 --- a/action.yml +++ b/action.yml @@ -83,7 +83,7 @@ runs: using: composite steps: - name: Set tool environment - uses: actions/github-script@v6 + uses: actions/github-script@v7 id: environment with: github-token: ${{ inputs.token || env.GITHUB_TOKEN }} @@ -202,7 +202,7 @@ runs: shell: ${{ (runner.os == 'Windows' && 'pwsh') || 'bash' }} working-directory: ${{ inputs.working-directory }} - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 if: ${{ steps.tool-cache.outputs.cache-hit != 'true' }} with: github-token: ${{ inputs.token || env.GITHUB_TOKEN }} @@ -238,7 +238,7 @@ runs: INPUT_MATCHER_PATH: ${{ steps.environment.outputs.matcher-path }} - name: Install tool dependencies - uses: actions/github-script@v6 + uses: actions/github-script@v7 if: ${{ inputs.pyflakes == 'true' || inputs.shellcheck == 'true' }} id: tool-dependencies with: @@ -303,7 +303,7 @@ runs: INPUT_PYFLAKES: ${{ inputs.pyflakes }} INPUT_SHELLCHECK: ${{ inputs.shellcheck }} - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 id: tool-runner with: github-token: ${{ inputs.token || env.GITHUB_TOKEN }}