From 3b1e946a96091f5145dd088d3448b3091bb30a29 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: Sun, 6 Sep 2026 04:03:29 +0000 Subject: [PATCH] chore(github-actions): update ppat/github-workflows to v8.0.0 --- .github/workflows/lint.yaml | 22 +++++++++++----------- .github/workflows/publish.yaml | 2 +- .github/workflows/release.yaml | 2 +- .github/workflows/renovate.yaml | 2 +- .github/workflows/test-image.yaml | 2 +- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 6b46eca2..468e6b6b 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -21,7 +21,7 @@ permissions: jobs: detect-changes: - uses: ppat/github-workflows/.github/workflows/detect-changed-files.yaml@54ce2e4ac00927d6164d032b321f0142aab01c69 # v6.1.0 + uses: ppat/github-workflows/.github/workflows/detect-changed-files.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.0 with: # yamllint disable-line rule:indentation files_yaml: | @@ -79,7 +79,7 @@ jobs: commit-messages: if: ${{ github.event_name == 'pull_request' }} - uses: ppat/github-workflows/.github/workflows/lint-commit-messages.yaml@54ce2e4ac00927d6164d032b321f0142aab01c69 # v6.1.0 + uses: ppat/github-workflows/.github/workflows/lint-commit-messages.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.0 with: git_ref: ${{ github.head_ref }} fetch_depth: ${{ github.event.pull_request.commits || 0 }} @@ -142,7 +142,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@54ce2e4ac00927d6164d032b321f0142aab01c69 # v6.1.0 + uses: ppat/github-workflows/.github/workflows/lint-github-actions.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.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 }} @@ -150,7 +150,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@54ce2e4ac00927d6164d032b321f0142aab01c69 # v6.1.0 + uses: ppat/github-workflows/.github/workflows/lint-markdown.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.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 }} @@ -158,21 +158,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@54ce2e4ac00927d6164d032b321f0142aab01c69 # v6.1.0 + uses: ppat/github-workflows/.github/workflows/lint-hadolint.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.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@54ce2e4ac00927d6164d032b321f0142aab01c69 # v6.1.0 + uses: ppat/github-workflows/.github/workflows/lint-pre-commit.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.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@54ce2e4ac00927d6164d032b321f0142aab01c69 # v6.1.0 + uses: ppat/github-workflows/.github/workflows/lint-renovate-config-check.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.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 }} @@ -180,7 +180,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@54ce2e4ac00927d6164d032b321f0142aab01c69 # v6.1.0 + uses: ppat/github-workflows/.github/workflows/lint-shellcheck.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.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 }} @@ -188,7 +188,7 @@ jobs: opentofu: needs: [opentofu-dirs] if: ${{ github.event_name != 'pull_request' || needs.opentofu-dirs.outputs.opentofu_dirs != '[]' }} - uses: ppat/github-workflows/.github/workflows/lint-opentofu.yaml@54ce2e4ac00927d6164d032b321f0142aab01c69 # v6.1.0 + uses: ppat/github-workflows/.github/workflows/lint-opentofu.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.0 with: git_ref: ${{ github.head_ref || github.ref }} tofu_dirs: ${{ needs.opentofu-dirs.outputs.opentofu_dirs }} @@ -196,7 +196,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@54ce2e4ac00927d6164d032b321f0142aab01c69 # v6.1.0 + uses: ppat/github-workflows/.github/workflows/lint-yaml.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.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 }} @@ -204,6 +204,6 @@ jobs: zizmor: 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-zizmor.yaml@54ce2e4ac00927d6164d032b321f0142aab01c69 # v6.1.0 + uses: ppat/github-workflows/.github/workflows/lint-zizmor.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.0 with: git_ref: ${{ github.head_ref || github.ref }} diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 86add4a7..f69ad8e5 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -25,7 +25,7 @@ jobs: permissions: contents: read packages: write - uses: ppat/github-workflows/.github/workflows/build-docker-image.yaml@54ce2e4ac00927d6164d032b321f0142aab01c69 # v6.1.0 (unmerged PR #615 -- repoint to the v6.0.0 tag before merge) + uses: ppat/github-workflows/.github/workflows/build-docker-image.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.0 (unmerged PR #615 -- repoint to the v6.0.0 tag before merge) with: image_context_path: images/homelab-workspace label_title: "Homelab Workspace" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 13d9e24e..b817cd91 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -19,7 +19,7 @@ permissions: {} jobs: release: - uses: ppat/github-workflows/.github/workflows/release-please.yaml@b0d4d41a875d2a1a062dc3bebf2907734f6351c6 # v7.0.0 + uses: ppat/github-workflows/.github/workflows/release-please.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.0 with: dry_run: ${{ github.event_name == 'pull_request' }} secrets: diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml index 2bf0b10c..b6dc1e0a 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@b0d4d41a875d2a1a062dc3bebf2907734f6351c6 # v7.0.0 + uses: ppat/github-workflows/.github/workflows/renovate.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.0 with: dry_run: ${{ github.event_name == 'pull_request' }} git_ref: ${{ github.head_ref || github.ref }} diff --git a/.github/workflows/test-image.yaml b/.github/workflows/test-image.yaml index 4ef69d58..a09beb5e 100644 --- a/.github/workflows/test-image.yaml +++ b/.github/workflows/test-image.yaml @@ -20,7 +20,7 @@ jobs: permissions: contents: read packages: write - uses: ppat/github-workflows/.github/workflows/build-docker-image.yaml@54ce2e4ac00927d6164d032b321f0142aab01c69 # v6.1.0 + uses: ppat/github-workflows/.github/workflows/build-docker-image.yaml@c22c55c4a2764c23e5de0bd11bbb64e2ae38592b # v8.0.0 with: image_context_path: images/homelab-workspace label_title: "Homelab Workspace"