From 6a2da1d2889affc9f0e9abb5b5310adecd658647 Mon Sep 17 00:00:00 2001 From: k1rk <8kirk8@gmail.com> Date: Thu, 17 Aug 2023 18:16:54 +0200 Subject: [PATCH] switch to own image --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 1053143..6c8807e 100644 --- a/action.yml +++ b/action.yml @@ -50,13 +50,13 @@ runs: shell: bash - name: Build commenter docker image (master) if: ${{ inputs.use_beta_version != 'true' }} - run: docker build --build-arg TERRAFORM_VERSION=${{ steps.tf_version.outputs.version }} -t commenter https://github.com/GetTerminus/terraform-pr-commenter.git#v3 + run: docker build --build-arg TERRAFORM_VERSION=${{ steps.tf_version.outputs.version }} -t commenter https://github.com/k1rk/terraform-pr-commenter.git#v3 shell: bash - name: Build commenter docker image (beta) if: ${{ inputs.use_beta_version == 'true' }} # append branch with a pound (#) if developing. e.g., `commenter.git#my-branch` run: | - docker build --build-arg TERRAFORM_VERSION=${{ steps.tf_version.outputs.version }} -t commenter https://github.com/GetTerminus/terraform-pr-commenter.git#v3-beta + docker build --build-arg TERRAFORM_VERSION=${{ steps.tf_version.outputs.version }} -t commenter https://github.com/k1rk/terraform-pr-commenter.git#v3-beta shell: bash - name: Run commenter image (plan) if: ${{ inputs.commenter_type == 'plan' }}