From 41d8970445533ead8d9a2a06808e9b4e84ee4d05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Oct 2022 06:40:30 +0000 Subject: [PATCH] chore(deps): bump actions/github-script from 6.1.0 to 6.3.1 Bumps [actions/github-script](https://github.com/actions/github-script) from 6.1.0 to 6.3.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.1.0...v6.3.1) --- 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 8101aff..0b33772 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.3.1 if: github.event_name == 'pull_request' env: PLAN: "terraform\n${{ steps.plan.outputs.stdout }}"