Skip to content

Commit e62e543

Browse files
Workflows files test (#209)
Co-authored-by: CloudDrove CI <[email protected]>
1 parent 3410da2 commit e62e543

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

.github/workflows/smurf_docker_helm.yml

Lines changed: 13 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].3
206+
uses: clouddrove/[email protected].4
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].3
216+
uses: clouddrove/[email protected].4
217217
with:
218218
tool: sdkr
219219
command: >-
@@ -298,15 +298,15 @@ jobs:
298298
credentials_json: '${{ secrets.GOOGLE_CREDENTIALS }}'
299299

300300
- name: Docker Image Scan
301-
uses: clouddrove/[email protected].3
301+
uses: clouddrove/[email protected].4
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'
308308

309-
uses: clouddrove/[email protected].3
309+
uses: clouddrove/[email protected].4
310310
with:
311311
tool: sdkr
312312
command: >-
@@ -315,7 +315,7 @@ jobs:
315315
316316
- name: Docker Image Push
317317
if: inputs.docker_push == 'true' && inputs.gcp_docker_push != 'true'
318-
uses: clouddrove/[email protected].3
318+
uses: clouddrove/[email protected].4
319319
with:
320320
tool: sdkr
321321
command: >-
@@ -324,7 +324,7 @@ jobs:
324324
325325
- name: Docker Image Push in GCP
326326
if: inputs.docker_push == 'true' && inputs.gcp_docker_push == 'true'
327-
uses: clouddrove/[email protected].3
327+
uses: clouddrove/[email protected].4
328328
with:
329329
tool: sdkr
330330
command: >-
@@ -340,13 +340,13 @@ jobs:
340340
uses: actions/checkout@v4
341341

342342
- name: Helm Lint
343-
uses: clouddrove/[email protected].3
343+
uses: clouddrove/[email protected].4
344344
with:
345345
tool: selm
346346
command: lint ${{ inputs.helm_chart_directory }} -f ${{ inputs.helm_values_file_path }}
347347

348348
- name: Helm Template
349-
uses: clouddrove/[email protected].3
349+
uses: clouddrove/[email protected].4
350350
with:
351351
tool: selm
352352
command: >-
@@ -406,27 +406,27 @@ jobs:
406406
- name: Helm Plugin
407407
if: inputs.helm_plugin_install == 'true'
408408

409-
uses: clouddrove/[email protected].3
409+
uses: clouddrove/[email protected].4
410410
with:
411411
tool: selm
412412
command: plugin ${{ inputs.helm_plugins }}
413413

414414
- name: Add Helm Chart
415415
if: inputs.helm_repo_add == 'true'
416-
uses: clouddrove/[email protected].3
416+
uses: clouddrove/[email protected].4
417417
with:
418418
tool: selm
419419
command: repo add ${{ inputs.helm_repository }} ${{ inputs.helm_repository_url }}
420420

421421
- name: Update Helm Charts
422422
if: inputs.helm_repo_add == 'true'
423-
uses: clouddrove/[email protected].3
423+
uses: clouddrove/[email protected].4
424424
with:
425425
tool: selm
426426
command: repo update
427427

428428
- name: Helm Deploy
429-
uses: clouddrove/[email protected].3
429+
uses: clouddrove/[email protected].4
430430
with:
431431
tool: selm
432432
command: >-
@@ -487,7 +487,7 @@ jobs:
487487
shell: bash
488488

489489
- name: Helm Rollback
490-
uses: clouddrove/[email protected].3
490+
uses: clouddrove/[email protected].4
491491

492492
with:
493493
tool: selm

.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].3
92+
uses: clouddrove/[email protected].4
9393
with:
9494
tool: stf
9595
command: format -r
9696

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

103103
- name: Terraform Validate
104-
uses: clouddrove/[email protected].3
104+
uses: clouddrove/[email protected].4
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].3
160+
uses: clouddrove/[email protected].4
161161
with:
162162
tool: stf
163163
command: 'init --dir=${{ inputs.terraform_directory }}'
164164

165165
- name: Terraform Plan
166-
uses: clouddrove/[email protected].3
166+
uses: clouddrove/[email protected].4
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].3
181+
uses: clouddrove/[email protected].4
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].3
198+
uses: clouddrove/[email protected].4
199199
with:
200200
tool: stf
201201
command: 'destroy --auto-approve --dir=${{ inputs.terraform_directory }}'

0 commit comments

Comments
 (0)