Skip to content

Commit 449c1c7

Browse files
chore: prepare release v1.19.5-0
base revision: 97ea729
1 parent e6ebcd8 commit 449c1c7

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

apply/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ inputs:
1616
runs:
1717
using: composite
1818
steps:
19-
- uses: suzuki-shunsuke/tfaction/terraform-apply@main
19+
- uses: suzuki-shunsuke/tfaction/terraform-apply@e6ebcd8339c8d065116e0ff750be8671db754d9c
2020
if: env.TFACTION_JOB_TYPE == 'terraform'
2121
with:
2222
# pull-requests:write - Create pull request comments and labels
2323
# actions:read - Download artifacts
2424
# contents:write - Update pull request branches
2525
github_token: ${{inputs.github_token}}
2626

27-
- uses: suzuki-shunsuke/tfaction/tfmigrate-apply@main
27+
- uses: suzuki-shunsuke/tfaction/tfmigrate-apply@e6ebcd8339c8d065116e0ff750be8671db754d9c
2828
if: env.TFACTION_JOB_TYPE == 'tfmigrate'
2929
with:
3030
# pull-requests:write - Create pull request comments

list-targets/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141
env:
4242
HEAD_SHA: ${{github.event.pull_request.head.sha}}
4343

44-
- uses: suzuki-shunsuke/tfaction/list-working-dirs@main
44+
- uses: suzuki-shunsuke/tfaction/list-working-dirs@e6ebcd8339c8d065116e0ff750be8671db754d9c
4545
id: list-working-directory-configs
4646
- uses: suzuki-shunsuke/tfaction/js@d3eec6c0ac5275dd07aa01766959dcae0d8512d1
4747
id: global-config

terraform-plan/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ runs:
6666
CONFTEST_POLICY_DIRECTORY: ${{ steps.global-config.outputs.conftest_policy_directory }}
6767
TF_COMMAND: ${{ steps.target-config.outputs.terraform_command }}
6868

69-
- uses: suzuki-shunsuke/tfaction/conftest@main
69+
- uses: suzuki-shunsuke/tfaction/conftest@e6ebcd8339c8d065116e0ff750be8671db754d9c
7070
if: |
7171
env.TFACTION_DRIFT_ISSUE_NUMBER || !fromJSON(steps.check-terraform-skip.outputs.skip_terraform)
7272
with:

test-module/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,14 @@ runs:
8181
shell: bash
8282
working-directory: ${{ env.TFACTION_TARGET }}
8383

84-
- uses: suzuki-shunsuke/tfaction/terraform-docs@main
84+
- uses: suzuki-shunsuke/tfaction/terraform-docs@e6ebcd8339c8d065116e0ff750be8671db754d9c
8585
with:
8686
github_token: ${{ inputs.github_token }}
8787
securefix_action_app_id: ${{ inputs.securefix_action_app_id }}
8888
securefix_action_app_private_key: ${{ inputs.securefix_action_app_private_key }}
8989
working_directory: ${{ env.TFACTION_TARGET }}
9090

91-
- uses: suzuki-shunsuke/tfaction/terraform-fmt@main
91+
- uses: suzuki-shunsuke/tfaction/terraform-fmt@e6ebcd8339c8d065116e0ff750be8671db754d9c
9292
with:
9393
working_directory: ${{ env.TFACTION_TARGET }}
9494
terraform_command: ${{ steps.global-config.outputs.terraform_command }}

test/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232
- shell: bash
3333
id: action_path
3434
run: echo "value=$GITHUB_ACTION_PATH" >> "$GITHUB_OUTPUT"
35-
- uses: suzuki-shunsuke/tfaction/conftest@main
35+
- uses: suzuki-shunsuke/tfaction/conftest@e6ebcd8339c8d065116e0ff750be8671db754d9c
3636
with:
3737
github_token: ${{ inputs.github_token }}
3838
env:
@@ -79,7 +79,7 @@ runs:
7979
securefix_action_app_private_key: ${{ inputs.securefix_action_app_private_key }}
8080
securefix_action_server_repository: ${{ steps.global-config.outputs.securefix_action_server_repository }}
8181

82-
- uses: suzuki-shunsuke/tfaction/terraform-fmt@main
82+
- uses: suzuki-shunsuke/tfaction/terraform-fmt@e6ebcd8339c8d065116e0ff750be8671db754d9c
8383
if: steps.target-config.outputs.destroy != 'true'
8484
with:
8585
working_directory: ${{ steps.target-config.outputs.working_directory }}
@@ -88,7 +88,7 @@ runs:
8888
securefix_action_app_id: ${{ inputs.securefix_action_app_id }}
8989
securefix_action_app_private_key: ${{ inputs.securefix_action_app_private_key }}
9090

91-
- uses: suzuki-shunsuke/tfaction/terraform-docs@main
91+
- uses: suzuki-shunsuke/tfaction/terraform-docs@e6ebcd8339c8d065116e0ff750be8671db754d9c
9292
if: steps.target-config.outputs.enable_terraform_docs == 'true' && steps.target-config.outputs.destroy != 'true'
9393
with:
9494
github_token: ${{ inputs.github_token }}

tfmigrate-plan/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ runs:
6767
files: ${{ steps.target-config.outputs.working_directory }}/.tfmigrate.hcl
6868

6969
- if: steps.migrate.outputs.changed != 'true'
70-
uses: suzuki-shunsuke/tfaction/conftest@main
70+
uses: suzuki-shunsuke/tfaction/conftest@e6ebcd8339c8d065116e0ff750be8671db754d9c
7171
with:
7272
plan: "true"
7373
github_token: ${{inputs.github_token}}

0 commit comments

Comments
 (0)