You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+20-2Lines changed: 20 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,10 +11,27 @@ The actions are versioned as a suite. Some actions may have no change in behavio
11
11
12
12
When using an action you can specify the version as:
13
13
14
-
-`@v1.39.0` to use an exact release
15
-
-`@v1.39` to use the latest patch release for the specific minor version
14
+
-`@v1.40.0` to use an exact release
15
+
-`@v1.40` to use the latest patch release for the specific minor version
16
16
-`@v1` to use the latest patch release for the specific major version
17
17
18
+
## [1.40.0] - 2024-01-10
19
+
20
+
### Added
21
+
- An optional `plan_path` input for [dflook/terraform-apply](terraform-apply), and matching `plan_path` output for [dflook/terraform-plan](terraform-plan).
22
+
23
+
This allows passing the generated plan from the plan step to the apply step, if you have a secure place to store it.
24
+
25
+
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.
26
+
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.
27
+
It must still match the plan in the PR comment.
28
+
29
+
This can be much faster than planning the same change twice, but is not necessarily a better choice. See the [dflook/terraform-apply](terraform-apply) docs for details.
30
+
31
+
- A new `to_import` output for [dflook/terraform-plan](terraform-plan), which is the number of resources that would be imported by the plan.
32
+
33
+
This joins the existing `to_add`, `to_change`, `to_destroy` and `to_move` outputs.
34
+
18
35
## [1.39.0] - 2023-12-24
19
36
20
37
### Added
@@ -616,6 +633,7 @@ First release of the GitHub Actions:
0 commit comments