Releases: dflook/terraform-github-actions
v1.45.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@v4
- uses: dflook/terraform-plan@v1.45.0
with:
path: my-terraform-config
You can specify an action version as:
@v1.45.0
to use exactly this release@v1.45
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
dflook/tofu-*
actions can now read the OpenTofu version from a tofuenv.opentofu-version
file in the module path.
See the dflook/tofu-version for details.
v1.44.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@v4
- uses: dflook/terraform-plan@v1.44.0
with:
path: my-terraform-config
You can specify an action version as:
@v1.44.0
to use exactly this release@v1.44
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
- Outdated comments are now minimised in the GitHub UI, making it easier to find the most recent plan.
v1.43.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.43.0
with:
path: my-terraform-config
You can specify an action version as:
@v1.43.0
to use exactly this release@v1.43
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
-
New dflook/terraform-test and dflook/tofu-test actions.
These can be used to run automated tests on Terraform/OpenTofu modules using the built-in
test
command.
v1.42.1
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.42.1
with:
path: my-terraform-config
You can specify an action version as:
@v1.42.1
to use exactly this release@v1.42
to use the latest patch release for this specific minor version@v1
to use the latest patch release for this specific major version
Changes
Fixed
-
required_version
constraints that prefix the version number withv
now work correctly.Previously a
required_version
constraint like>=v1.0.0
would not be recognised as a valid constraint.
This does not appear to be documented anywhere, but Terraform does accept them.
v1.42.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.42.0
with:
path: my-terraform-config
You can specify an action version as:
@v1.42.0
to use exactly this release@v1.42
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
GITHUB_DOT_COM_TOKEN
environment variable may be set to an authentication token to use for GitHub.com API requests.This is only useful to avoid rate limiting when using the actions with GitHub Enterprise together with OpenTofu.
Normally the
GITHUB_TOKEN
environment variable is used for API requests. When using GitHub Enterprise, theGITHUB_TOKEN
is the token for the GitHub Enterprise instance, and not the GitHub.com API.
OpenTofu requires the GitHub.com API to fetch release information.
v1.41.2
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.41.2
with:
path: my-terraform-config
You can specify an action version as:
@v1.41.2
to use exactly this release@v1.41
to use the latest patch release for this specific minor version@v1
to use the latest patch release for this specific major version
Changes
Fixed
-
Integration with Terraform cloud workspaces using Terraform >=1.6.
Previously, applying a plan to a Terraform cloud workspace that used Terraform >=1.6 would fail.
v1.41.1
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.41.1
with:
path: my-terraform-config
You can specify an action version as:
@v1.41.1
to use exactly this release@v1.41
to use the latest patch release for this specific minor version@v1
to use the latest patch release for this specific major version
Changes
Fixed
- Reading the terraform version from a .tool-versions file in the workspace root. Previously this was only working when the .tool-versions file was in a subdirectory of the workspace.
v1.41.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.41.0
with:
path: my-terraform-config
You can specify an action version as:
@v1.41.0
to use exactly this release@v1.41
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
- Downloaded OpenTofu checksum files are now verified using the OpenTofu public gpg key, beginning with OpenTofu v1.6.0.
v1.40.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.40.0
with:
path: my-terraform-config
You can specify an action version as:
@v1.40.0
to use exactly this release@v1.40
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
-
An optional
plan_path
input for dflook/terraform-apply, and matchingplan_path
output for dflook/terraform-plan.This allows passing the generated plan from the plan step to the apply step, if you have a secure place to store it.
The default behaviour when this is not set is unchanged - the apply step will generate a fresh plan and compare it to the plan from the PR comment.
By passing the plan from the plan step to the apply step, the apply step will skip generating a plan and use the passed plan instead.
It must still match the plan in the PR comment.This can be much faster than planning the same change twice, but is not necessarily a better choice. See the dflook/terraform-apply docs for details.
-
A new
to_import
output for dflook/terraform-plan, which is the number of resources that would be imported by the plan.This joins the existing
to_add
,to_change
,to_destroy
andto_move
outputs.
v1.39.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.39.0
with:
path: my-terraform-config
You can specify an action version as:
@v1.39.0
to use exactly this release@v1.39
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
-
Coloured highlighting for the plan in PR comments.
The plan shown in PR comments now uses diff syntax highlighting, making it easier to see the effect of the plan.
Fixed
-
Some workarounds were added for defective self-hosted runners that run docker based actions in broken environments.
This includes Actions Runner Controller with containerMode: "kubernetes".