fix(deps): update k8s.io/utils digest to 28399d8 #237
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: pre-commit | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install pre-commit | |
| run: pip install pre-commit | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| # TODO: add helm chart | |
| # - name: Build dependencies Helm - kic | |
| # uses: WyriHaximus/github-action-helm3@v4 | |
| # with: | |
| # exec: helm dependency build charts/kic | |
| - name: pre-commit | |
| run: pre-commit run --all-files --show-diff-on-failure |