From 848ce709a886d1f3322e7a95a5a5aefc2fc92c09 Mon Sep 17 00:00:00 2001 From: David John Arnold Jr Date: Wed, 30 Oct 2024 12:21:57 -0700 Subject: [PATCH] Update action.yml --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index e797d41..4b92952 100644 --- a/action.yml +++ b/action.yml @@ -91,7 +91,7 @@ runs: if: ${{ inputs.workspace != '' }} with: source: .terraform - bucket: image-pipeline-assets + bucket: ${{ inputs.cache_bucket }} archive: true key: ${{ github.repository }}/${{ inputs.workspace }}/${{ steps.uuid.outputs.uuid }}/terraform-dir @@ -100,7 +100,7 @@ runs: if: ${{ inputs.workspace == '' }} with: source: .terraform - bucket: image-pipeline-assets + bucket: ${{ inputs.cache_bucket }} archive: true key: ${{ github.repository }}/${{ steps.uuid.outputs.uuid }}/terraform-dir @@ -109,7 +109,7 @@ runs: if: ${{ inputs.workspace != '' }} with: source: .terraform.lock.hcl - bucket: image-pipeline-assets + bucket: ${{ inputs.cache_bucket }} archive: false key: ${{ github.repository }}/${{ inputs.workspace }}/${{ steps.uuid.outputs.uuid }}/terraform.lock.hcl @@ -118,7 +118,7 @@ runs: if: ${{ inputs.workspace == '' }} with: source: .terraform.lock.hcl - bucket: image-pipeline-assets + bucket: ${{ inputs.cache_bucket }} archive: false key: ${{ github.repository }}/${{ steps.uuid.outputs.uuid }}/terraform.lock.hcl