From e70d0d74f09e73c872b107a2e833224b6ea59c3f 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: Fri, 22 May 2026 05:17:23 +0000 Subject: [PATCH] chore(github-actions): update ppat/github-workflows (v3.2.0 -> v3.3.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 2f12d43d..2a754317 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@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 + uses: ppat/github-workflows/.github/workflows/detect-changed-files.yaml@e64fb8da9cde825742d37515f3667e9ab11bd031 # v3.3.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@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 + uses: ppat/github-workflows/.github/workflows/lint-commit-messages.yaml@e64fb8da9cde825742d37515f3667e9ab11bd031 # v3.3.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@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 + uses: ppat/github-workflows/.github/workflows/lint-github-actions.yaml@e64fb8da9cde825742d37515f3667e9ab11bd031 # v3.3.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@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 + uses: ppat/github-workflows/.github/workflows/lint-markdown.yaml@e64fb8da9cde825742d37515f3667e9ab11bd031 # v3.3.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@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 + uses: ppat/github-workflows/.github/workflows/lint-hadolint.yaml@e64fb8da9cde825742d37515f3667e9ab11bd031 # v3.3.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@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 + uses: ppat/github-workflows/.github/workflows/lint-pre-commit.yaml@e64fb8da9cde825742d37515f3667e9ab11bd031 # v3.3.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@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 + uses: ppat/github-workflows/.github/workflows/lint-renovate-config-check.yaml@e64fb8da9cde825742d37515f3667e9ab11bd031 # v3.3.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@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 + uses: ppat/github-workflows/.github/workflows/lint-shellcheck.yaml@e64fb8da9cde825742d37515f3667e9ab11bd031 # v3.3.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@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 + uses: ppat/github-workflows/.github/workflows/lint-terraform.yaml@e64fb8da9cde825742d37515f3667e9ab11bd031 # v3.3.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@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 + uses: ppat/github-workflows/.github/workflows/lint-yaml.yaml@e64fb8da9cde825742d37515f3667e9ab11bd031 # v3.3.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 2cb016f5..277fab74 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@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 + uses: ppat/github-workflows/.github/workflows/release-semantic.yaml@e64fb8da9cde825742d37515f3667e9ab11bd031 # v3.3.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@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 + uses: ppat/github-workflows/.github/workflows/build-docker-image.yaml@e64fb8da9cde825742d37515f3667e9ab11bd031 # v3.3.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 dde359a2..4087fd43 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@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 + uses: ppat/github-workflows/.github/workflows/renovate.yaml@e64fb8da9cde825742d37515f3667e9ab11bd031 # v3.3.0 with: dry_run: ${{ github.event_name == 'pull_request' }} git_ref: ${{ github.head_ref || github.ref }}