Skip to content

Commit a87942a

Browse files
authored
update new version v1.1.3 (#207)
1 parent 3bb6f6b commit a87942a

File tree

2 files changed

+23
-20
lines changed

2 files changed

+23
-20
lines changed

.github/workflows/smurf_docker_helm.yml

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203

204204
- name: Docker Image Build
205205
if: inputs.docker_buildkit_enable != 'true'
206-
uses: clouddrove/[email protected].2
206+
uses: clouddrove/[email protected].3
207207
with:
208208
tool: sdkr
209209
command: >-
@@ -213,7 +213,7 @@ jobs:
213213
214214
- name: Docker Image Build with Buildkit
215215
if: inputs.docker_buildkit_enable == 'true'
216-
uses: clouddrove/[email protected].2
216+
uses: clouddrove/[email protected].3
217217
with:
218218
tool: sdkr
219219
command: >-
@@ -298,14 +298,15 @@ jobs:
298298
credentials_json: '${{ secrets.GOOGLE_CREDENTIALS }}'
299299

300300
- name: Docker Image Scan
301-
uses: clouddrove/[email protected].2
301+
uses: clouddrove/[email protected].3
302302
with:
303303
tool: sdkr
304304
command: scan ${{ inputs.docker_image_name }}:${{ inputs.docker_image_tag }}
305305

306306
- name: Docker Image Tag
307307
if: inputs.docker_push == 'true'
308-
uses: clouddrove/[email protected]
308+
309+
uses: clouddrove/[email protected]
309310
with:
310311
tool: sdkr
311312
command: >-
@@ -314,7 +315,7 @@ jobs:
314315
315316
- name: Docker Image Push
316317
if: inputs.docker_push == 'true' && inputs.gcp_docker_push != 'true'
317-
uses: clouddrove/[email protected].2
318+
uses: clouddrove/[email protected].3
318319
with:
319320
tool: sdkr
320321
command: >-
@@ -323,7 +324,7 @@ jobs:
323324
324325
- name: Docker Image Push in GCP
325326
if: inputs.docker_push == 'true' && inputs.gcp_docker_push == 'true'
326-
uses: clouddrove/[email protected].2
327+
uses: clouddrove/[email protected].3
327328
with:
328329
tool: sdkr
329330
command: >-
@@ -339,13 +340,13 @@ jobs:
339340
uses: actions/checkout@v4
340341

341342
- name: Helm Lint
342-
uses: clouddrove/[email protected].2
343+
uses: clouddrove/[email protected].3
343344
with:
344345
tool: selm
345346
command: lint ${{ inputs.helm_chart_directory }} -f ${{ inputs.helm_values_file_path }}
346347

347348
- name: Helm Template
348-
uses: clouddrove/[email protected].2
349+
uses: clouddrove/[email protected].3
349350
with:
350351
tool: selm
351352
command: >-
@@ -404,27 +405,28 @@ jobs:
404405

405406
- name: Helm Plugin
406407
if: inputs.helm_plugin_install == 'true'
407-
uses: clouddrove/[email protected]
408+
409+
uses: clouddrove/[email protected]
408410
with:
409411
tool: selm
410412
command: plugin ${{ inputs.helm_plugins }}
411413

412414
- name: Add Helm Chart
413415
if: inputs.helm_repo_add == 'true'
414-
uses: clouddrove/[email protected].2
416+
uses: clouddrove/[email protected].3
415417
with:
416418
tool: selm
417419
command: repo add ${{ inputs.helm_repository }} ${{ inputs.helm_repository_url }}
418420

419421
- name: Update Helm Charts
420422
if: inputs.helm_repo_add == 'true'
421-
uses: clouddrove/[email protected].2
423+
uses: clouddrove/[email protected].3
422424
with:
423425
tool: selm
424426
command: repo update
425427

426428
- name: Helm Deploy
427-
uses: clouddrove/[email protected].2
429+
uses: clouddrove/[email protected].3
428430
with:
429431
tool: selm
430432
command: >-
@@ -485,7 +487,8 @@ jobs:
485487
shell: bash
486488

487489
- name: Helm Rollback
488-
uses: clouddrove/[email protected]
490+
uses: clouddrove/[email protected]
491+
489492
with:
490493
tool: selm
491494
command: >-

.github/workflows/smurf_terraform.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -89,19 +89,19 @@ jobs:
8989
terraform_version: '${{ inputs.terraform_version }}'
9090

9191
- name: Terraform Format
92-
uses: clouddrove/[email protected].2
92+
uses: clouddrove/[email protected].3
9393
with:
9494
tool: stf
9595
command: format -r
9696

9797
- name: Terraform Init
98-
uses: clouddrove/[email protected].2
98+
uses: clouddrove/[email protected].3
9999
with:
100100
tool: stf
101101
command: 'init --dir=${{ inputs.terraform_directory }}'
102102

103103
- name: Terraform Validate
104-
uses: clouddrove/[email protected].2
104+
uses: clouddrove/[email protected].3
105105
with:
106106
tool: stf
107107
command: 'validate --dir=${{ inputs.terraform_directory }}'
@@ -157,13 +157,13 @@ jobs:
157157
credentials_json: '${{ secrets.GOOGLE_CREDENTIALS }}'
158158

159159
- name: Terraform Init
160-
uses: clouddrove/[email protected].2
160+
uses: clouddrove/[email protected].3
161161
with:
162162
tool: stf
163163
command: 'init --dir=${{ inputs.terraform_directory }}'
164164

165165
- name: Terraform Plan
166-
uses: clouddrove/[email protected].2
166+
uses: clouddrove/[email protected].3
167167
with:
168168
tool: stf
169169
command: 'plan --dir=${{ inputs.terraform_directory }}'
@@ -178,7 +178,7 @@ jobs:
178178
issue-title: Terraform Plan for Infrastructure Update
179179

180180
- name: Terraform Apply
181-
uses: clouddrove/[email protected].2
181+
uses: clouddrove/[email protected].3
182182
with:
183183
tool: stf
184184
command: 'apply --auto-approve --dir=${{ inputs.terraform_directory }}'
@@ -195,7 +195,7 @@ jobs:
195195
terraform_version: '${{ inputs.terraform_version }}'
196196

197197
- name: Terraform Destroy
198-
uses: clouddrove/[email protected].2
198+
uses: clouddrove/[email protected].3
199199
with:
200200
tool: stf
201201
command: 'destroy --auto-approve --dir=${{ inputs.terraform_directory }}'

0 commit comments

Comments
 (0)