Skip to content

Commit 817ba17

Browse files
chore(github-actions): update ppat/github-workflows (v3.0.0 -> v3.0.1) (#695)
Co-authored-by: ppat-self-hosted-renovate-bot[bot] <175373406+ppat-self-hosted-renovate-bot[bot]@users.noreply.github.com>
1 parent b641eee commit 817ba17

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/lint.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions:
1717

1818
jobs:
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: |
@@ -75,7 +75,7 @@ jobs:
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 }}

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ env:
2929

3030
jobs:
3131
create-release:
32-
uses: ppat/github-workflows/.github/workflows/release-semantic.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
32+
uses: ppat/github-workflows/.github/workflows/release-semantic.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
3333
with:
3434
dry_run: ${{ (github.event_name == 'pull_request') || (github.event_name == 'workflow_dispatch' && github.event.inputs.test_publish == 'true') }}
3535
release_branch: ${{ github.head_ref || github.ref_name }}
@@ -39,7 +39,7 @@ jobs:
3939

4040
publish-image:
4141
needs: [create-release]
42-
uses: ppat/github-workflows/.github/workflows/build-docker-image.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
42+
uses: ppat/github-workflows/.github/workflows/build-docker-image.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
4343
with:
4444
image_context_path: images/homelab-workspace
4545
label_title: "Homelab Workspace"

.github/workflows/renovate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616

1717
jobs:
1818
renovate:
19-
uses: ppat/github-workflows/.github/workflows/renovate.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
19+
uses: ppat/github-workflows/.github/workflows/renovate.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
2020
with:
2121
dry_run: ${{ github.event_name == 'pull_request' }}
2222
git_ref: ${{ github.head_ref || github.ref }}

.github/workflows/update-aqua-checksum.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ permissions:
1818

1919
jobs:
2020
update-aqua-checksums:
21-
uses: ppat/github-workflows/.github/workflows/update-aqua-checksums.yaml@47e6b17c76bb237afb4d3469115e329b627602b7 # v3.0.0
21+
uses: ppat/github-workflows/.github/workflows/update-aqua-checksums.yaml@b62897fd95e2274bfb096f275a7e5588d61bb1c3 # v3.0.1
2222
with:
2323
git_ref: ${{ github.head_ref || github.ref_name }}
2424
aqua_dirs: |

0 commit comments

Comments
 (0)