Skip to content

Commit d59223b

Browse files
committed
🔖 v2.0.0
1 parent 3c285d3 commit d59223b

File tree

49 files changed

+130
-121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+130
-121
lines changed

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,17 @@ The actions are versioned as a suite. Some actions may have no change in behavio
1111

1212
When using an action you can specify the version as:
1313

14-
- `@v1.49.0` to use an exact release
15-
- `@v1.49` to use the latest patch release for the specific minor version
16-
- `@v1` to use the latest patch release for the specific major version
14+
- `@v2.0.0` to use an exact release
15+
- `@v2.0` to use the latest patch release for the specific minor version
16+
- `@v2` to use the latest patch release for the specific major version
17+
18+
## [2.0.0] - 2025-05-31
19+
20+
### Changed
21+
- The container image has been updated from debian 11 to debian 12. This may affect you if you rely on the runtime environment of Terraform/OpenTofu.
22+
23+
### Removed
24+
- The deprecated `var` input has been removed. This was deprecated in v1.9.0 from 2021-04-10 when it was replaced by the introduction of the `variables` input.
1725

1826
## [1.49.0] - 2025-05-29
1927

@@ -741,6 +749,7 @@ First release of the GitHub Actions:
741749
- [dflook/terraform-new-workspace](terraform-new-workspace)
742750
- [dflook/terraform-destroy-workspace](terraform-destroy-workspace)
743751

752+
[2.0.0]: https://github.com/dflook/terraform-github-actions/compare/v1.49.0...v2.0.0
744753
[1.49.0]: https://github.com/dflook/terraform-github-actions/compare/v1.48.0...v1.49.0
745754
[1.48.0]: https://github.com/dflook/terraform-github-actions/compare/v1.47.0...v1.48.0
746755
[1.47.0]: https://github.com/dflook/terraform-github-actions/compare/v1.46.1...v1.47.0

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
uses: actions/checkout@v4
7575

7676
- name: terraform plan
77-
uses: dflook/terraform-plan@v1
77+
uses: dflook/terraform-plan@v2
7878
with:
7979
path: my-terraform-config
8080
```
@@ -106,7 +106,7 @@ jobs:
106106
uses: actions/checkout@v4
107107

108108
- name: terraform apply
109-
uses: dflook/terraform-apply@v1
109+
uses: dflook/terraform-apply@v2
110110
with:
111111
path: my-terraform-config
112112
```
@@ -141,7 +141,7 @@ jobs:
141141
uses: actions/checkout@v4
142142

143143
- name: terraform validate
144-
uses: dflook/terraform-validate@v1
144+
uses: dflook/terraform-validate@v2
145145
with:
146146
path: my-terraform-config
147147

@@ -153,7 +153,7 @@ jobs:
153153
uses: actions/checkout@v4
154154

155155
- name: terraform fmt
156-
uses: dflook/terraform-fmt-check@v1
156+
uses: dflook/terraform-fmt-check@v2
157157
with:
158158
path: my-terraform-config
159159
```
@@ -183,7 +183,7 @@ jobs:
183183
uses: actions/checkout@v4
184184

185185
- name: Check for drift
186-
uses: dflook/terraform-check@v1
186+
uses: dflook/terraform-check@v2
187187
with:
188188
path: my-terraform-config
189189
```
@@ -213,7 +213,7 @@ jobs:
213213
uses: actions/checkout@v4
214214

215215
- name: Rotate certs
216-
uses: dflook/terraform-apply@v1
216+
uses: dflook/terraform-apply@v2
217217
with:
218218
path: my-terraform-config
219219
auto_approve: true
@@ -245,7 +245,7 @@ jobs:
245245
uses: actions/checkout@v4
246246

247247
- name: terraform fmt
248-
uses: dflook/terraform-fmt@v1
248+
uses: dflook/terraform-fmt@v2
249249
with:
250250
path: my-terraform-config
251251

@@ -285,13 +285,13 @@ jobs:
285285
uses: actions/checkout@v4
286286

287287
- name: Use branch workspace
288-
uses: dflook/terraform-new-workspace@v1
288+
uses: dflook/terraform-new-workspace@v2
289289
with:
290290
path: my-terraform-config
291291
workspace: ${{ github.head_ref }}
292292

293293
- name: Deploy test infrastrucutre
294-
uses: dflook/terraform-apply@v1
294+
uses: dflook/terraform-apply@v2
295295
id: test-infra
296296
with:
297297
path: my-terraform-config
@@ -323,7 +323,7 @@ jobs:
323323
uses: actions/checkout@v4
324324

325325
- name: terraform destroy
326-
uses: dflook/terraform-destroy-workspace@v1
326+
uses: dflook/terraform-destroy-workspace@v2
327327
with:
328328
path: my-terraform-config
329329
workspace: ${{ github.head_ref }}

docs-gen/actions/apply.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
ref: refs/pull/${{ github.event.issue.number }}/merge
156156
157157
- name: $ToolName apply
158-
uses: dflook/$ToolName-apply@v1
158+
uses: dflook/$ToolName-apply@v2
159159
with:
160160
path: my-$ToolName-config
161161
```
@@ -208,7 +208,7 @@
208208
uses: actions/checkout@v4
209209
210210
- name: $ToolName apply
211-
uses: dflook/$ToolName-apply@v1
211+
uses: dflook/$ToolName-apply@v2
212212
with:
213213
path: my-$ToolName-config
214214
```
@@ -235,7 +235,7 @@
235235
uses: actions/checkout@v4
236236
237237
- name: $ToolName apply
238-
uses: dflook/$ToolName-apply@v1
238+
uses: dflook/$ToolName-apply@v2
239239
with:
240240
path: my-$ToolName-config
241241
auto_approve: true
@@ -262,7 +262,7 @@
262262
uses: actions/checkout@v4
263263
264264
- name: $ToolName apply
265-
uses: dflook/$ToolName-apply@v1
265+
uses: dflook/$ToolName-apply@v2
266266
with:
267267
path: my-$ToolName-config
268268
auto_approve: true
@@ -297,7 +297,7 @@
297297
ref: refs/pull/${{ github.event.issue.number }}/merge
298298
299299
- name: $ProductName apply
300-
uses: dflook/$ToolName-apply@v1
300+
uses: dflook/$ToolName-apply@v2
301301
with:
302302
path: my-$ToolName-config
303303
```
@@ -327,14 +327,14 @@
327327
uses: actions/checkout@v4
328328
329329
- name: $ToolName apply
330-
uses: dflook/$ToolName-apply@v1
330+
uses: dflook/$ToolName-apply@v2
331331
continue-on-error: true
332332
id: first_try
333333
with:
334334
path: $ToolName
335335
336336
- name: Retry failed apply
337-
uses: dflook/$ToolName-apply@v1
337+
uses: dflook/$ToolName-apply@v2
338338
if: ${{ steps.first_try.outputs.failure-reason == 'apply-failed' }}
339339
with:
340340
path: $ToolName

docs-gen/actions/check.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
uses: actions/checkout@v4
7171
7272
- name: Check
73-
uses: dflook/$ToolName-check@v1
73+
uses: dflook/$ToolName-check@v2
7474
with:
7575
path: my-$ToolName-configuration
7676
```
@@ -93,7 +93,7 @@
9393
uses: actions/checkout@v4
9494
9595
- name: Check
96-
uses: dflook/$ToolName-check@v1
96+
uses: dflook/$ToolName-check@v2
9797
id: check
9898
with:
9999
path: my-$ToolName-configuration
@@ -103,4 +103,4 @@
103103
run: echo "There are outstanding changes to apply"
104104
```
105105
'''
106-
)
106+
)

docs-gen/actions/destroy.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
uses: actions/checkout@v4
7777
7878
- name: $ToolName destroy
79-
uses: dflook/$ToolName-destroy@v1
79+
uses: dflook/$ToolName-destroy@v2
8080
with:
8181
path: my-$ToolName-config
8282
workspace: ${{ github.head_ref }}
@@ -100,19 +100,19 @@
100100
uses: actions/checkout@v4
101101
102102
- name: $ToolName destroy
103-
uses: dflook/$ToolName-destroy@v1
103+
uses: dflook/$ToolName-destroy@v2
104104
id: first_try
105105
continue-on-error: true
106106
with:
107107
path: my-$ToolName-config
108108
workspace: ${{ github.head_ref }}
109109
110110
- name: Retry failed destroy
111-
uses: dflook/$ToolName-destroy@v1
111+
uses: dflook/$ToolName-destroy@v2
112112
if: ${{ steps.first_try.outputs.failure-reason == 'destroy-failed' }}
113113
with:
114114
path: my-$ToolName-config
115115
workspace: ${{ github.head_ref }}
116116
```
117117
'''
118-
)
118+
)

docs-gen/actions/destroy_workspace.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
uses: actions/checkout@v4
7676
7777
- name: $ToolName destroy
78-
uses: dflook/$ToolName-destroy-workspace@v1
78+
uses: dflook/$ToolName-destroy-workspace@v2
7979
with:
8080
path: $ToolName
8181
workspace: ${{ github.head_ref }}
@@ -99,15 +99,15 @@
9999
uses: actions/checkout@v4
100100
101101
- name: $ToolName destroy
102-
uses: dflook/$ToolName-destroy-workspace@v1
102+
uses: dflook/$ToolName-destroy-workspace@v2
103103
id: first_try
104104
continue-on-error: true
105105
with:
106106
path: my-$ToolName-config
107107
workspace: ${{ github.head_ref }}
108108
109109
- name: Retry failed destroy
110-
uses: dflook/$ToolName-destroy-workspace@v1
110+
uses: dflook/$ToolName-destroy-workspace@v2
111111
if: ${{ steps.first_try.outputs.failure-reason == 'destroy-failed' }}
112112
with:
113113
path: my-$ToolName-config

docs-gen/actions/fmt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
uses: actions/checkout@v4
6565
6666
- name: $ToolName fmt
67-
uses: dflook/$ToolName-fmt@v1
67+
uses: dflook/$ToolName-fmt@v2
6868
with:
6969
path: my-$ToolName-config
7070

docs-gen/actions/fmt_check.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
uses: actions/checkout@v4
7373
7474
- name: $ToolName fmt
75-
uses: dflook/$ToolName-fmt-check@v1
75+
uses: dflook/$ToolName-fmt-check@v2
7676
with:
7777
path: my-$ToolName-config
7878
```
@@ -93,7 +93,7 @@
9393
uses: actions/checkout@v4
9494
9595
- name: $ToolName fmt
96-
uses: dflook/$ToolName-fmt-check@v1
96+
uses: dflook/$ToolName-fmt-check@v2
9797
id: fmt-check
9898
with:
9999
path: my-$ToolName-config

docs-gen/actions/new_workspace.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@
5757
uses: actions/checkout@v4
5858
5959
- name: Use branch workspace
60-
uses: dflook/$ToolName-new-workspace@v1
60+
uses: dflook/$ToolName-new-workspace@v2
6161
with:
6262
path: $ToolName
6363
workspace: ${{ github.head_ref }}
6464
6565
- name: Deploy test infrastrucutre
66-
uses: dflook/$ToolName-apply@v1
66+
uses: dflook/$ToolName-apply@v2
6767
with:
6868
path: $ToolName
6969
workspace: ${{ github.head_ref }}

docs-gen/actions/output.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
uses: actions/checkout@v4
6161
6262
- name: Get outputs
63-
uses: dflook/$ToolName-output@v1
63+
uses: dflook/$ToolName-output@v2
6464
id: tf-outputs
6565
with:
6666
path: my-$ToolName-config
@@ -96,7 +96,7 @@
9696
uses: actions/checkout@v4
9797
9898
- name: Get outputs
99-
uses: dflook/$ToolName-output@v1
99+
uses: dflook/$ToolName-output@v2
100100
id: tf-outputs
101101
with:
102102
path: my-$ToolName-config

0 commit comments

Comments
 (0)