Skip to content

chore(deps): update helm release cloudnative-pg to v0.22.1 #372

chore(deps): update helm release cloudnative-pg to v0.22.1

chore(deps): update helm release cloudnative-pg to v0.22.1 #372

Workflow file for this run

---
name: pre-commit
on: # yamllint disable-line rule:truthy
pull_request:
push:
branches:
- main
merge_group:
types: [checks_requested]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
id: setup-python
with:
python-version: '3.11'
cache: 'pip'
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- run: pip install pre-commit
- name: "run pre-commit"
run: |
pre-commit run --all-files --show-diff-on-failure