Skip to content

Commit a0732a2

Browse files
chore(github-actions): update ppat/github-workflows (v4.4.0 -> v5.0.0)
BREAKING CHANGE
1 parent 879e8db commit a0732a2

3 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/lint.yaml

Lines changed: 11 additions & 11 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@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
20+
uses: ppat/github-workflows/.github/workflows/detect-changed-files.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
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@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
78+
uses: ppat/github-workflows/.github/workflows/lint-commit-messages.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
7979
with:
8080
git_ref: ${{ github.head_ref }}
8181
fetch_depth: ${{ github.event.pull_request.commits || 0 }}
@@ -85,68 +85,68 @@ 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@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
88+
uses: ppat/github-workflows/.github/workflows/lint-github-actions.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
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@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
96+
uses: ppat/github-workflows/.github/workflows/lint-markdown.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
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@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
104+
uses: ppat/github-workflows/.github/workflows/lint-hadolint.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
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@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
111+
uses: ppat/github-workflows/.github/workflows/lint-pre-commit.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
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@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
118+
uses: ppat/github-workflows/.github/workflows/lint-renovate-config-check.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
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@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
126+
uses: ppat/github-workflows/.github/workflows/lint-shellcheck.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
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@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
134+
uses: ppat/github-workflows/.github/workflows/lint-terraform.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
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@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
142+
uses: ppat/github-workflows/.github/workflows/lint-yaml.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
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 }}
146146

147147
zizmor:
148148
needs: [detect-changes]
149149
if: ${{ github.event_name != 'pull_request' || fromJSON(needs.detect-changes.outputs.results).actions_any_changed == 'true' }}
150-
uses: ppat/github-workflows/.github/workflows/lint-zizmor.yaml@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
150+
uses: ppat/github-workflows/.github/workflows/lint-zizmor.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
151151
with:
152152
git_ref: ${{ github.head_ref || github.ref }}

.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@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
32+
uses: ppat/github-workflows/.github/workflows/release-semantic.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
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@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
42+
uses: ppat/github-workflows/.github/workflows/build-docker-image.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
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@1e8ca1b00b6e69bdf5aef8b33111c594c051ff65 # v4.4.0
19+
uses: ppat/github-workflows/.github/workflows/renovate.yaml@53fe31687a5d45d36fb9089090851c82f0294095 # v5.0.0
2020
with:
2121
dry_run: ${{ github.event_name == 'pull_request' }}
2222
git_ref: ${{ github.head_ref || github.ref }}

0 commit comments

Comments
 (0)