Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
goruha authored Nov 28, 2024
1 parent 47ceb57 commit 470907c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,14 @@ inputs:
atmos-version:
description: The version of atmos to install
required: false
default: ">= 1.63.0"
default: ">= 1.99.0"
atmos-config-path:
description: The path to the atmos.yaml file
required: true
skip-checkout:
description: "Disable actions/checkout. Useful for when the checkout happens in a previous step and file are modified outside of git through other actions"
required: false
default: 'false'
debug:
description: "Enable action debug mode. Default: 'false'"
default: 'false'
Expand Down Expand Up @@ -77,14 +81,15 @@ runs:
- name: Atmos Apply
if: env.ACTION == 'remediate'
id: atmos-apply
uses: cloudposse/github-action-atmos-terraform-apply@v2
uses: cloudposse/github-action-atmos-terraform-apply@aws-auth-optional
with:
component: ${{ steps.metadata.outputs.component }}
stack: ${{ steps.metadata.outputs.stack }}
sha: ${{ steps.metadata.outputs.commit-sha }}
atmos-config-path: ${{ inputs.atmos-config-path }}
atmos-version: ${{ inputs.atmos-version }}
debug: ${{ inputs.debug }}
skip-checkout: ${{ inputs.skip-checkout }}

- name: Check If GitHub Actions is Enabled For Component
shell: bash
Expand Down

0 comments on commit 470907c

Please sign in to comment.