Skip to content

Commit 052d850

Browse files
committed
Fixes
1 parent d4010c2 commit 052d850

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

.github/workflows/develop.yaml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323

2424
- name: Test with local template and JSON file
2525
id: deploy-file
26-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
26+
uses: aws-actions/aws-cloudformation-github-deploy@develop
2727
with:
2828
name: test-file-${{ github.run_number }}
2929
template: stack.yaml
3030
parameter-overrides: "file:///${{ github.workspace }}/overrides.json"
3131

3232
- name: Test with inline parameters
3333
id: deploy-inline
34-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
34+
uses: aws-actions/aws-cloudformation-github-deploy@develop
3535
with:
3636
name: test-inline-${{ github.run_number }}
3737
template: stack.yaml
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: Test with large template (should fail with clean error message)
5252
id: deploy-large
53-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
53+
uses: aws-actions/aws-cloudformation-github-deploy@develop
5454
with:
5555
name: test-large-${{ github.run_number }}
5656
template: large-template.yaml
@@ -75,7 +75,7 @@ jobs:
7575

7676
- name: Test template with validation error (should fail during change set creation)
7777
id: deploy-validation-error
78-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
78+
uses: aws-actions/aws-cloudformation-github-deploy@develop
7979
with:
8080
name: test-validation-error-${{ github.run_number }}
8181
template: validation-error-template.yaml
@@ -100,7 +100,7 @@ jobs:
100100

101101
- name: Test template with execution error (should fail during change set execution)
102102
id: deploy-execution-error
103-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
103+
uses: aws-actions/aws-cloudformation-github-deploy@develop
104104
with:
105105
name: test-execution-error-${{ github.run_number }}
106106
template: execution-error-template.yaml
@@ -125,23 +125,23 @@ jobs:
125125

126126
- name: Deploy stack first time
127127
id: deploy-first
128-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
128+
uses: aws-actions/aws-cloudformation-github-deploy@develop
129129
with:
130130
name: test-empty-changeset-${{ github.run_number }}
131131
template: stack.yaml
132132
parameter-overrides: "Environment=beta,AList=value1,AList=value2"
133133

134134
- name: Deploy same stack again with default behavior (should succeed on empty changeset)
135135
id: deploy-second-default
136-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
136+
uses: aws-actions/aws-cloudformation-github-deploy@develop
137137
with:
138138
name: test-empty-changeset-${{ github.run_number }}
139139
template: stack.yaml
140140
parameter-overrides: "Environment=beta,AList=value1,AList=value2"
141141

142142
- name: Deploy same stack again with fail-on-empty-changeset=1 (should fail on empty changeset)
143143
id: deploy-second-fail
144-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
144+
uses: aws-actions/aws-cloudformation-github-deploy@develop
145145
with:
146146
name: test-empty-changeset-${{ github.run_number }}
147147
template: stack.yaml
@@ -170,7 +170,7 @@ jobs:
170170

171171
- name: Create change set for review
172172
id: create-cs
173-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
173+
uses: aws-actions/aws-cloudformation-github-deploy@develop
174174
with:
175175
mode: "create-only"
176176
name: test-two-step-${{ github.run_number }}
@@ -186,7 +186,7 @@ jobs:
186186
187187
- name: Execute change set
188188
if: steps.create-cs.outputs.has-changes == 'true'
189-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
189+
uses: aws-actions/aws-cloudformation-github-deploy@develop
190190
with:
191191
mode: "execute-only"
192192
name: test-two-step-${{ github.run_number }}
@@ -204,7 +204,7 @@ jobs:
204204
aws-region: us-east-1
205205

206206
- name: Deploy initial stack for drift testing
207-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
207+
uses: aws-actions/aws-cloudformation-github-deploy@develop
208208
with:
209209
name: test-drift-${{ github.run_number }}
210210
template: drift-test.yaml
@@ -236,7 +236,7 @@ jobs:
236236
237237
- name: Create drift-reverting change set
238238
id: drift-cs
239-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
239+
uses: aws-actions/aws-cloudformation-github-deploy@develop
240240
with:
241241
mode: "create-only"
242242
name: test-drift-${{ github.run_number }}
@@ -252,7 +252,7 @@ jobs:
252252
echo "Changes Summary: ${{ steps.drift-cs.outputs.changes-summary }}"
253253
254254
- name: Execute drift-reverting change set
255-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
255+
uses: aws-actions/aws-cloudformation-github-deploy@develop
256256
with:
257257
mode: "execute-only"
258258
name: test-drift-${{ github.run_number }}
@@ -272,7 +272,7 @@ jobs:
272272
role-duration-seconds: 7200
273273

274274
- name: Test long-running stack (70 minutes)
275-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
275+
uses: aws-actions/aws-cloudformation-github-deploy@develop
276276
with:
277277
name: test-long-running-${{ github.run_number }}
278278
template: long-running-stack.yaml
@@ -291,7 +291,7 @@ jobs:
291291
aws-region: us-east-1
292292

293293
- name: Create stack with multiple resource types for formatting test
294-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
294+
uses: aws-actions/aws-cloudformation-github-deploy@develop
295295
with:
296296
name: test-formatting-${{ github.run_number }}
297297
template: formatting-test-template.yaml
@@ -300,7 +300,7 @@ jobs:
300300

301301
- name: Update stack to generate diverse change set
302302
id: update-stack
303-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
303+
uses: aws-actions/aws-cloudformation-github-deploy@develop
304304
with:
305305
name: test-formatting-${{ github.run_number }}
306306
template: formatting-test-template-updated.yaml
@@ -325,15 +325,15 @@ jobs:
325325
aws-region: us-east-1
326326

327327
- name: Create initial stack for markdown testing
328-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
328+
uses: aws-actions/aws-cloudformation-github-deploy@develop
329329
with:
330330
name: test-markdown-${{ github.run_number }}
331331
template: markdown-test-template.yaml
332332
parameter-overrides: "Environment=test"
333333

334334
- name: Update stack to generate markdown output
335335
id: create-markdown-cs
336-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
336+
uses: aws-actions/aws-cloudformation-github-deploy@develop
337337
with:
338338
mode: "create-only"
339339
name: test-markdown-${{ github.run_number }}
@@ -373,7 +373,7 @@ jobs:
373373

374374
- name: Deploy stack with event streaming
375375
id: deploy-with-events
376-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
376+
uses: aws-actions/aws-cloudformation-github-deploy@develop
377377
with:
378378
name: test-events-${{ github.run_number }}
379379
template: event-streaming-test.yaml
@@ -413,7 +413,7 @@ jobs:
413413

414414
- name: Test boolean input parsing - ${{ matrix.test-case.name }}
415415
id: test-boolean
416-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
416+
uses: aws-actions/aws-cloudformation-github-deploy@develop
417417
with:
418418
name: test-bool-${{ matrix.test-case.name }}-${{ github.run_number }}
419419
template: stack.yaml
@@ -441,7 +441,7 @@ jobs:
441441

442442
- name: Test multiple validation errors
443443
id: validation-test
444-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
444+
uses: aws-actions/aws-cloudformation-github-deploy@develop
445445
with:
446446
name: test-validation-enhanced-${{ github.run_number }}
447447
template: multiple-validation-errors.yaml
@@ -466,7 +466,7 @@ jobs:
466466

467467
- name: Test stack creation with ID retrieval
468468
id: create-stack
469-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
469+
uses: aws-actions/aws-cloudformation-github-deploy@develop
470470
with:
471471
name: test-stack-id-${{ github.run_number }}
472472
template: stack.yaml
@@ -505,7 +505,7 @@ jobs:
505505

506506
- name: Create change set
507507
id: create-cs
508-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
508+
uses: aws-actions/aws-cloudformation-github-deploy@develop
509509
with:
510510
mode: "create-only"
511511
name: test-execute-events-${{ github.run_number }}
@@ -515,7 +515,7 @@ jobs:
515515

516516
- name: Execute change set with event streaming
517517
id: execute-cs
518-
uses: aws-actions/aws-cloudformation-github-deploy@v2.0.0-beta
518+
uses: aws-actions/aws-cloudformation-github-deploy@develop
519519
with:
520520
mode: "execute-only"
521521
name: test-execute-events-${{ github.run_number }}

0 commit comments

Comments
 (0)