chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.32.7 to 1.32.14 #20
Workflow file for this run
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 Checks | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| pre-commit: | |
| name: Run pre-commit hooks | |
| runs-on: ubuntu-latest | |
| env: | |
| SKIP: ggshield | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - name: Install pre-commit | |
| run: python -m pip install --upgrade pre-commit | |
| - name: Run pre-commit stage hooks | |
| run: pre-commit run --all-files | |
| - name: Run pre-push stage hooks | |
| run: pre-commit run --all-files --hook-stage pre-push |