From a14a62c4104c6fee6286b725eac9653fbd997632 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Jan 2023 06:04:32 +0000 Subject: [PATCH] chore(deps): bump actions/github-script from 6.1.0 to 6.4.0 Bumps [actions/github-script](https://github.com/actions/github-script) from 6.1.0 to 6.4.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.1.0...v6.4.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/plan-terraform.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/plan-terraform.yml b/.github/workflows/plan-terraform.yml index 66cd97b..1780b0f 100644 --- a/.github/workflows/plan-terraform.yml +++ b/.github/workflows/plan-terraform.yml @@ -103,7 +103,7 @@ jobs: run: files=($(echo $TF_VAR_FILES | tr ", " "\n")); terraform plan `for file in $files; do echo "--var-file=$file"; done` --out=plan.tfplan - name: Create PR comment with Plan output - uses: actions/github-script@v6.1.0 + uses: actions/github-script@v6.4.0 if: github.event_name == 'pull_request' env: PLAN: "terraform\n${{ steps.plan.outputs.stdout }}"