File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -44,11 +44,18 @@ jobs:
44
44
- name : validate terraform
45
45
run : terraform validate
46
46
- if : contains(matrix.terraform, '1.3.')
47
- name : Setup TFLint
48
- uses : terraform-linters/setup-tflint@v2
49
- - if : contains(matrix.terraform, '1.3.')
50
- name : Run TFLint
51
- run : tflint -f compact
47
+ - name : tflint
48
+ uses : reviewdog/action-tflint@master
49
+ with :
50
+ github_token : ${{ secrets.GITHUB_TOKEN }}
51
+ fail_on_error : " true" # Optional. Fail action if errors are found
52
+ filter_mode : " nofilter" # Optional. Check all files, not just the diff
53
+
54
+ # name: Setup TFLint
55
+ # uses: terraform-linters/setup-tflint@v2
56
+ # - if: contains(matrix.terraform, '1.3.')
57
+ # name: Run TFLint
58
+ # run: tflint -f compact
52
59
53
60
verify_examples :
54
61
name : Verify examples
You can’t perform that action at this time.
0 commit comments