v1.32.0
All the terraform actions in this repository are released as one.
Use the actions as part of a GitHub Actions workflow, e.g:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dflook/terraform-plan@v1.32.0
with:
path: my-terraform-config
You can specify an action version as:
@v1.32.0
to use exactly this release@v1.32
to use the latest patch release for this specific minor version@v1
to use the latest patch release for this specific major version
Changes
Added
- A new dflook/terraform-state-unlock action. Thanks patricktalmeida for working on this!
- Actions that fail because the state was locked will now have the
failure-reason
output set tostate-locked
.
They also have a newlock-info
output which is a json object with any available lock information.
This affects dflook/terraform-apply, dflook/terraform-destroy, and dflook/terraform-destroy-worksapce.
Changed
- If a terraform operation fails because the state is locked the
failure-reason
output will now be set tostate-locked
, where before it may have beenapply-failed
ordestroy-failed
.