v1.6.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@v2
- uses: dflook/terraform-plan@v1.6.0
with:
path: my-terraform-configYou can specify an action version as:
@v1.6.0to use exactly this release@v1.6to use the latest patch release for this specific minor version@v1to use the latest patch release for this specific major version
Changes
Added
-
PR comments use a one line summary of the terraform output, with the full output in a collapsable pane.
If a plan is short the output is shown by default. This can be controlled with the
TF_PLAN_COLLAPSE_LENGTHenvironment
variable for the dflook/terraform-plan action.
Fixed
- Now makes far fewer github api requests to avoid rate limiting.