Skip to content

v1.6.0

Choose a tag to compare

@dflook dflook released this 25 Feb 00:43
Immutable release. Only release title and notes can be modified.
444c0ab

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-config

You can specify an action version as:

  • @v1.6.0 to use exactly this release
  • @v1.6 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

  • 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_LENGTH environment
    variable for the dflook/terraform-plan action.

Fixed

  • Now makes far fewer github api requests to avoid rate limiting.