Skip to content

Commit 283f2ac

Browse files
committed
🔖 v1.13.0
1 parent a8b7f13 commit 283f2ac

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

CHANGELOG.md

+27-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,34 @@ The actions are versioned as a suite. Some actions may have no change in behavio
88

99
When using an action you can specify the version as:
1010

11-
- `@v1.12.0` to use an exact release
12-
- `@v1.12` to use the latest patch release for the specific minor version
11+
- `@v1.13.0` to use an exact release
12+
- `@v1.13` to use the latest patch release for the specific minor version
1313
- `@v1` to use the latest patch release for the specific major version
1414

15+
## [1.13.0] - 2021-07-24
16+
17+
### Added
18+
19+
- `TERRAFORM_PRE_RUN` environment variable for customising the environment before running terraform.
20+
21+
It can be set to a command that will be run prior to `terraform init`.
22+
23+
The runtime environment for these actions is subject to change in minor version releases.
24+
If using this environment variable, specify the minor version of the action to use.
25+
26+
The runtime image is currently based on `debian:buster`, with the command run using `bash -xeo pipefail`.
27+
28+
For example:
29+
```yaml
30+
env:
31+
TERRAFORM_PRE_RUN: |
32+
# Install latest Azure CLI
33+
curl -skL https://aka.ms/InstallAzureCLIDeb | bash
34+
35+
# Install postgres client
36+
apt-get install -y --no-install-recommends postgresql-client
37+
```
38+
1539
## [1.12.0] - 2021-06-08
1640
1741
### Changed
@@ -186,6 +210,7 @@ First release of the GitHub Actions:
186210
- [dflook/terraform-new-workspace](terraform-new-workspace)
187211
- [dflook/terraform-destroy-workspace](terraform-destroy-workspace)
188212

213+
[1.13.0]: https://github.com/dflook/terraform-github-actions/compare/v1.12.0...v1.13.0
189214
[1.12.0]: https://github.com/dflook/terraform-github-actions/compare/v1.11.0...v1.12.0
190215
[1.11.0]: https://github.com/dflook/terraform-github-actions/compare/v1.10.0...v1.11.0
191216
[1.10.0]: https://github.com/dflook/terraform-github-actions/compare/v1.9.3...v1.10.0

terraform-plan/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ The [dflook/terraform-apply](https://github.com/dflook/terraform-github-actions/
249249

250250
The runtime environment for these actions is subject to change in minor version releases. If using this environment variable, specify the minor version of the action to use.
251251

252-
The runtime image is currently based on `debian:buster`
252+
The runtime image is currently based on `debian:buster`, with the command run using `bash -xeo pipefail`.
253253

254254
For example:
255255
```yaml

0 commit comments

Comments
 (0)