From 41188f9cfa3c8a873d51a0096901d0efeb3962f5 Mon Sep 17 00:00:00 2001 From: "ppat-self-hosted-renovate-bot[bot]" <175373406+ppat-self-hosted-renovate-bot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 19:02:26 +0000 Subject: [PATCH] chore(github-actions): update ppat/github-workflows (v4.1.0 -> v4.2.0) --- .github/workflows/lint.yaml | 20 ++++++++++---------- .github/workflows/release.yaml | 4 ++-- .github/workflows/renovate.yaml | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 847c9cd2..653c627f 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -17,7 +17,7 @@ permissions: jobs: detect-changes: - uses: ppat/github-workflows/.github/workflows/detect-changed-files.yaml@72fca5796f7e8f92e60a89226239c1fa197e5c03 # v4.1.0 + uses: ppat/github-workflows/.github/workflows/detect-changed-files.yaml@10103e49c72fbd6d3e06d7e29f51815b9b8644a6 # v4.2.0 with: # yamllint disable-line rule:indentation files_yaml: | @@ -75,7 +75,7 @@ jobs: commit-messages: if: ${{ github.event_name == 'pull_request' }} - uses: ppat/github-workflows/.github/workflows/lint-commit-messages.yaml@72fca5796f7e8f92e60a89226239c1fa197e5c03 # v4.1.0 + uses: ppat/github-workflows/.github/workflows/lint-commit-messages.yaml@10103e49c72fbd6d3e06d7e29f51815b9b8644a6 # v4.2.0 with: git_ref: ${{ github.head_ref }} fetch_depth: ${{ github.event.pull_request.commits || 0 }} @@ -85,7 +85,7 @@ jobs: github-actions: needs: [detect-changes] if: ${{ github.event_name != 'pull_request' || fromJSON(needs.detect-changes.outputs.results).actions_any_changed == 'true' }} - uses: ppat/github-workflows/.github/workflows/lint-github-actions.yaml@72fca5796f7e8f92e60a89226239c1fa197e5c03 # v4.1.0 + uses: ppat/github-workflows/.github/workflows/lint-github-actions.yaml@10103e49c72fbd6d3e06d7e29f51815b9b8644a6 # v4.2.0 with: git_ref: ${{ github.head_ref || github.ref }} files: ${{ github.event_name != 'pull_request' && 'ALL' || fromJSON(needs.detect-changes.outputs.results).actions_all_changed_files }} @@ -93,7 +93,7 @@ jobs: markdown: needs: [detect-changes] if: ${{ github.event_name != 'pull_request' || fromJSON(needs.detect-changes.outputs.results).markdown_any_changed == 'true' }} - uses: ppat/github-workflows/.github/workflows/lint-markdown.yaml@72fca5796f7e8f92e60a89226239c1fa197e5c03 # v4.1.0 + uses: ppat/github-workflows/.github/workflows/lint-markdown.yaml@10103e49c72fbd6d3e06d7e29f51815b9b8644a6 # v4.2.0 with: git_ref: ${{ github.head_ref || github.ref }} files: ${{ github.event_name != 'pull_request' && 'ALL' || fromJSON(needs.detect-changes.outputs.results).markdown_all_changed_files }} @@ -101,21 +101,21 @@ jobs: docker-files: needs: [detect-changes] if: ${{ github.event_name != 'pull_request' || fromJSON(needs.detect-changes.outputs.results).docker_any_changed == 'true' }} - uses: ppat/github-workflows/.github/workflows/lint-hadolint.yaml@72fca5796f7e8f92e60a89226239c1fa197e5c03 # v4.1.0 + uses: ppat/github-workflows/.github/workflows/lint-hadolint.yaml@10103e49c72fbd6d3e06d7e29f51815b9b8644a6 # v4.2.0 with: git_ref: ${{ github.head_ref || github.ref }} files: ${{ github.event_name != 'pull_request' && 'ALL' || fromJSON(needs.detect-changes.outputs.results).docker_all_changed_files }} hadolint_config: .hadolint.yaml pre-commit: - uses: ppat/github-workflows/.github/workflows/lint-pre-commit.yaml@72fca5796f7e8f92e60a89226239c1fa197e5c03 # v4.1.0 + uses: ppat/github-workflows/.github/workflows/lint-pre-commit.yaml@10103e49c72fbd6d3e06d7e29f51815b9b8644a6 # v4.2.0 with: git_ref: ${{ github.head_ref || github.ref }} renovate-config-check: needs: [detect-changes] if: ${{ github.event_name != 'pull_request' || fromJSON(needs.detect-changes.outputs.results).renovate_any_changed == 'true' }} - uses: ppat/github-workflows/.github/workflows/lint-renovate-config-check.yaml@72fca5796f7e8f92e60a89226239c1fa197e5c03 # v4.1.0 + uses: ppat/github-workflows/.github/workflows/lint-renovate-config-check.yaml@10103e49c72fbd6d3e06d7e29f51815b9b8644a6 # v4.2.0 with: git_ref: ${{ github.head_ref || github.ref }} files: ${{ github.event_name != 'pull_request' && 'ALL' || fromJSON(needs.detect-changes.outputs.results).renovate_all_changed_files }} @@ -123,7 +123,7 @@ jobs: shellcheck: needs: [detect-changes] if: ${{ github.event_name != 'pull_request' || fromJSON(needs.detect-changes.outputs.results).shellscripts_any_changed == 'true' }} - uses: ppat/github-workflows/.github/workflows/lint-shellcheck.yaml@72fca5796f7e8f92e60a89226239c1fa197e5c03 # v4.1.0 + uses: ppat/github-workflows/.github/workflows/lint-shellcheck.yaml@10103e49c72fbd6d3e06d7e29f51815b9b8644a6 # v4.2.0 with: git_ref: ${{ github.head_ref || github.ref }} files: ${{ github.event_name != 'pull_request' && 'ALL' || fromJSON(needs.detect-changes.outputs.results).shellscripts_all_changed_files }} @@ -131,7 +131,7 @@ jobs: terraform: needs: [terraform-dirs] if: ${{ github.event_name != 'pull_request' || needs.terraform-dirs.outputs.terraform_dirs != '[]' }} - uses: ppat/github-workflows/.github/workflows/lint-terraform.yaml@72fca5796f7e8f92e60a89226239c1fa197e5c03 # v4.1.0 + uses: ppat/github-workflows/.github/workflows/lint-terraform.yaml@10103e49c72fbd6d3e06d7e29f51815b9b8644a6 # v4.2.0 with: git_ref: ${{ github.head_ref || github.ref }} tf_dirs: ${{ needs.terraform-dirs.outputs.terraform_dirs }} @@ -139,7 +139,7 @@ jobs: yaml: needs: [detect-changes] if: ${{ github.event_name != 'pull_request' || fromJSON(needs.detect-changes.outputs.results).yaml_any_changed == 'true' }} - uses: ppat/github-workflows/.github/workflows/lint-yaml.yaml@72fca5796f7e8f92e60a89226239c1fa197e5c03 # v4.1.0 + uses: ppat/github-workflows/.github/workflows/lint-yaml.yaml@10103e49c72fbd6d3e06d7e29f51815b9b8644a6 # v4.2.0 with: git_ref: ${{ github.head_ref || github.ref }} files: ${{ github.event_name != 'pull_request' && 'ALL' || fromJSON(needs.detect-changes.outputs.results).yaml_all_changed_files }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f26cde9d..f1fceec5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -29,7 +29,7 @@ env: jobs: create-release: - uses: ppat/github-workflows/.github/workflows/release-semantic.yaml@72fca5796f7e8f92e60a89226239c1fa197e5c03 # v4.1.0 + uses: ppat/github-workflows/.github/workflows/release-semantic.yaml@10103e49c72fbd6d3e06d7e29f51815b9b8644a6 # v4.2.0 with: dry_run: ${{ (github.event_name == 'pull_request') || (github.event_name == 'workflow_dispatch' && github.event.inputs.test_publish == 'true') }} release_branch: ${{ github.head_ref || github.ref_name }} @@ -39,7 +39,7 @@ jobs: publish-image: needs: [create-release] - uses: ppat/github-workflows/.github/workflows/build-docker-image.yaml@72fca5796f7e8f92e60a89226239c1fa197e5c03 # v4.1.0 + uses: ppat/github-workflows/.github/workflows/build-docker-image.yaml@10103e49c72fbd6d3e06d7e29f51815b9b8644a6 # v4.2.0 with: image_context_path: images/homelab-workspace label_title: "Homelab Workspace" diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml index 4c3531d1..af6f82d3 100644 --- a/.github/workflows/renovate.yaml +++ b/.github/workflows/renovate.yaml @@ -16,7 +16,7 @@ concurrency: jobs: renovate: - uses: ppat/github-workflows/.github/workflows/renovate.yaml@72fca5796f7e8f92e60a89226239c1fa197e5c03 # v4.1.0 + uses: ppat/github-workflows/.github/workflows/renovate.yaml@10103e49c72fbd6d3e06d7e29f51815b9b8644a6 # v4.2.0 with: dry_run: ${{ github.event_name == 'pull_request' }} git_ref: ${{ github.head_ref || github.ref }}