diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 95c953bd..2f12d43d 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@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/detect-changed-files.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.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@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/lint-commit-messages.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.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@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/lint-github-actions.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.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@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/lint-markdown.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.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@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/lint-hadolint.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.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@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/lint-pre-commit.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.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@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/lint-renovate-config-check.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.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@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/lint-shellcheck.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.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@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/lint-terraform.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.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@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/lint-yaml.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.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 d80743e7..42f7add4 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@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/release-semantic.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.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@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/build-docker-image.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.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 ffe38d4c..dde359a2 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@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/renovate.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 with: dry_run: ${{ github.event_name == 'pull_request' }} git_ref: ${{ github.head_ref || github.ref }} diff --git a/.github/workflows/update-aqua-checksum.yaml b/.github/workflows/update-aqua-checksum.yaml index 9919d5fc..237e3eff 100644 --- a/.github/workflows/update-aqua-checksum.yaml +++ b/.github/workflows/update-aqua-checksum.yaml @@ -18,7 +18,7 @@ permissions: jobs: update-aqua-checksums: - uses: ppat/github-workflows/.github/workflows/update-aqua-checksums.yaml@c867e85a344eba1f3408600b8212830fbe0decd9 # v3.1.0 + uses: ppat/github-workflows/.github/workflows/update-aqua-checksums.yaml@0bf8cd1eeb8e6e9f67fab279bc3be57e0be29c50 # v3.2.0 with: git_ref: ${{ github.head_ref || github.ref_name }} aqua_dirs: |