@@ -17,7 +17,7 @@ permissions:
1717
1818jobs :
1919 detect-changes :
20- uses : ppat/github-workflows/.github/workflows/detect-changed-files.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
20+ uses : ppat/github-workflows/.github/workflows/detect-changed-files.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
2121 with :
2222 # yamllint disable-line rule:indentation
2323 files_yaml : |
7575
7676 commit-messages :
7777 if : ${{ github.event_name == 'pull_request' }}
78- uses : ppat/github-workflows/.github/workflows/lint-commit-messages.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
78+ uses : ppat/github-workflows/.github/workflows/lint-commit-messages.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
7979 with :
8080 git_ref : ${{ github.head_ref }}
8181 fetch_depth : ${{ github.event.pull_request.commits || 0 }}
@@ -85,61 +85,61 @@ jobs:
8585 github-actions :
8686 needs : [detect-changes]
8787 if : ${{ github.event_name != 'pull_request' || fromJSON(needs.detect-changes.outputs.results).actions_any_changed == 'true' }}
88- uses : ppat/github-workflows/.github/workflows/lint-github-actions.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
88+ uses : ppat/github-workflows/.github/workflows/lint-github-actions.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
8989 with :
9090 git_ref : ${{ github.head_ref || github.ref }}
9191 files : ${{ github.event_name != 'pull_request' && 'ALL' || fromJSON(needs.detect-changes.outputs.results).actions_all_changed_files }}
9292
9393 markdown :
9494 needs : [detect-changes]
9595 if : ${{ github.event_name != 'pull_request' || fromJSON(needs.detect-changes.outputs.results).markdown_any_changed == 'true' }}
96- uses : ppat/github-workflows/.github/workflows/lint-markdown.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
96+ uses : ppat/github-workflows/.github/workflows/lint-markdown.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
9797 with :
9898 git_ref : ${{ github.head_ref || github.ref }}
9999 files : ${{ github.event_name != 'pull_request' && 'ALL' || fromJSON(needs.detect-changes.outputs.results).markdown_all_changed_files }}
100100
101101 docker-files :
102102 needs : [detect-changes]
103103 if : ${{ github.event_name != 'pull_request' || fromJSON(needs.detect-changes.outputs.results).docker_any_changed == 'true' }}
104- uses : ppat/github-workflows/.github/workflows/lint-hadolint.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
104+ uses : ppat/github-workflows/.github/workflows/lint-hadolint.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
105105 with :
106106 git_ref : ${{ github.head_ref || github.ref }}
107107 files : ${{ github.event_name != 'pull_request' && 'ALL' || fromJSON(needs.detect-changes.outputs.results).docker_all_changed_files }}
108108 hadolint_config : .hadolint.yaml
109109
110110 pre-commit :
111- uses : ppat/github-workflows/.github/workflows/lint-pre-commit.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
111+ uses : ppat/github-workflows/.github/workflows/lint-pre-commit.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
112112 with :
113113 git_ref : ${{ github.head_ref || github.ref }}
114114
115115 renovate-config-check :
116116 needs : [detect-changes]
117117 if : ${{ github.event_name != 'pull_request' || fromJSON(needs.detect-changes.outputs.results).renovate_any_changed == 'true' }}
118- uses : ppat/github-workflows/.github/workflows/lint-renovate-config-check.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
118+ uses : ppat/github-workflows/.github/workflows/lint-renovate-config-check.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
119119 with :
120120 git_ref : ${{ github.head_ref || github.ref }}
121121 files : ${{ github.event_name != 'pull_request' && 'ALL' || fromJSON(needs.detect-changes.outputs.results).renovate_all_changed_files }}
122122
123123 shellcheck :
124124 needs : [detect-changes]
125125 if : ${{ github.event_name != 'pull_request' || fromJSON(needs.detect-changes.outputs.results).shellscripts_any_changed == 'true' }}
126- uses : ppat/github-workflows/.github/workflows/lint-shellcheck.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
126+ uses : ppat/github-workflows/.github/workflows/lint-shellcheck.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
127127 with :
128128 git_ref : ${{ github.head_ref || github.ref }}
129129 files : ${{ github.event_name != 'pull_request' && 'ALL' || fromJSON(needs.detect-changes.outputs.results).shellscripts_all_changed_files }}
130130
131131 terraform :
132132 needs : [terraform-dirs]
133133 if : ${{ github.event_name != 'pull_request' || needs.terraform-dirs.outputs.terraform_dirs != '[]' }}
134- uses : ppat/github-workflows/.github/workflows/lint-terraform.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
134+ uses : ppat/github-workflows/.github/workflows/lint-terraform.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
135135 with :
136136 git_ref : ${{ github.head_ref || github.ref }}
137137 tf_dirs : ${{ needs.terraform-dirs.outputs.terraform_dirs }}
138138
139139 yaml :
140140 needs : [detect-changes]
141141 if : ${{ github.event_name != 'pull_request' || fromJSON(needs.detect-changes.outputs.results).yaml_any_changed == 'true' }}
142- uses : ppat/github-workflows/.github/workflows/lint-yaml.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
142+ uses : ppat/github-workflows/.github/workflows/lint-yaml.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
143143 with :
144144 git_ref : ${{ github.head_ref || github.ref }}
145145 files : ${{ github.event_name != 'pull_request' && 'ALL' || fromJSON(needs.detect-changes.outputs.results).yaml_all_changed_files }}
0 commit comments