v1.30.0
·
349 commits
to main
since this release
Immutable
release. Only release title and notes can be modified.
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.30.0
with:
path: my-terraform-configYou can specify an action version as:
@v1.30.0to use exactly this release@v1.30to use the latest patch release for this specific minor version@v1to use the latest patch release for this specific major version
Changes
Added
-
The
TERRAFORM_ACTIONS_GITHUB_TOKENenvironment variable can be set to the github token for the actions to use instead of usingGITHUB_TOKEN. This is useful if using the terraform GitHub provider which also uses theGITHUB_TOKENvariable, allowing the github actions and terraform provider to use separate tokens. -
The
GITHUB_TOKEN/TERRAFORM_ACTIONS_GITHUB_TOKENcan now be a github app token or fine grained personal access token. As before, it can also be a classic PAT or use the token provided by github actions.