Skip to content

Commit 9547d6a

Browse files
committed
fix terratest
1 parent 2437a0e commit 9547d6a

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/readme.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python-version: '3.x'
1919

2020
- name: 'create readme'
21-
uses: 'clouddrove/github-actions@CD-120'
21+
uses: 'clouddrove/github-actions@v9.0'
2222
with:
2323
actions_subcommand: 'readme'
2424
github_token: '${{ secrets.GITHUB}}'
@@ -35,7 +35,7 @@ jobs:
3535
continue-on-error: true
3636

3737
- name: 'push readme'
38-
uses: 'clouddrove/github-actions@CD-120'
38+
uses: 'clouddrove/github-actions@v9.0'
3939
continue-on-error: true
4040
with:
4141
actions_subcommand: 'push'

.github/workflows/terraform.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,60 +20,60 @@ jobs:
2020
aws-region: us-east-2
2121

2222
- name: 'Terraform Format'
23-
uses: 'clouddrove/github-actions@CD-120'
23+
uses: 'clouddrove/github-actions@v9.0'
2424
with:
2525
actions_subcommand: 'fmt'
2626

2727
- name: 'Terraform init for memcached'
28-
uses: 'clouddrove/github-actions@CD-120'
28+
uses: 'clouddrove/github-actions@v9.0'
2929
with:
3030
actions_subcommand: 'init'
3131
tf_actions_working_dir: ./_example/memcached
3232

3333
- name: 'Terraform validate for memcached'
34-
uses: 'clouddrove/github-actions@CD-120'
34+
uses: 'clouddrove/github-actions@v9.0'
3535
with:
3636
actions_subcommand: 'validate'
3737
tf_actions_working_dir: ./_example/memcached
3838

3939
- name: 'Terraform plan for memcached'
40-
uses: 'clouddrove/github-actions@CD-120'
40+
uses: 'clouddrove/github-actions@v9.0'
4141
with:
4242
actions_subcommand: 'plan'
4343
tf_actions_working_dir: ./_example/memcached
4444

4545
- name: 'Terraform init for redis'
46-
uses: 'clouddrove/github-actions@CD-120'
46+
uses: 'clouddrove/github-actions@v9.0'
4747
with:
4848
actions_subcommand: 'init'
4949
tf_actions_working_dir: ./_example/redis
5050

5151
- name: 'Terraform validate for redis'
52-
uses: 'clouddrove/github-actions@CD-120'
52+
uses: 'clouddrove/github-actions@v9.0'
5353
with:
5454
actions_subcommand: 'validate'
5555
tf_actions_working_dir: ./_example/redis
5656

5757
- name: 'Terraform plan for redis'
58-
uses: 'clouddrove/github-actions@CD-120'
58+
uses: 'clouddrove/github-actions@v9.0'
5959
with:
6060
actions_subcommand: 'plan'
6161
tf_actions_working_dir: ./_example/redis
6262

6363
- name: 'Terraform init for redis-cluster'
64-
uses: 'clouddrove/github-actions@CD-120'
64+
uses: 'clouddrove/github-actions@v9.0'
6565
with:
6666
actions_subcommand: 'init'
6767
tf_actions_working_dir: ./_example/redis-cluster
6868

6969
- name: 'Terraform validate for redis-cluster'
70-
uses: 'clouddrove/github-actions@CD-120'
70+
uses: 'clouddrove/github-actions@v9.0'
7171
with:
7272
actions_subcommand: 'validate'
7373
tf_actions_working_dir: ./_example/redis-cluster
7474

7575
- name: 'Terraform plan for redis-cluster'
76-
uses: 'clouddrove/github-actions@CD-120'
76+
uses: 'clouddrove/github-actions@v9.0'
7777
with:
7878
actions_subcommand: 'plan'
7979
tf_actions_working_dir: ./_example/redis-cluster

.github/workflows/terratest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: 'Terratest for redis'
2626
if: ${{ github.event.label.name == 'terratest' }}
27-
uses: 'clouddrove/github-actions@CD-120'
27+
uses: 'clouddrove/github-actions@v9.0'
2828
with:
2929
actions_subcommand: 'terratest'
3030
tf_actions_working_dir: '_test/redis'
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: 'Terratest for redis-cluster'
3535
if: ${{ github.event.label.name == 'terratest' }}
36-
uses: 'clouddrove/github-actions@CD-120'
36+
uses: 'clouddrove/github-actions@v9.0'
3737
with:
3838
actions_subcommand: 'terratest'
3939
tf_actions_working_dir: '_test/redis-cluster'

0 commit comments

Comments
 (0)