Skip to content

Bump trufflesecurity/trufflehog from b8724e87e6c7f6785bee707a82172d03e3006efb to efa1b8447850113eb7896652ef9e1fe1db7a88df #504

Bump trufflesecurity/trufflehog from b8724e87e6c7f6785bee707a82172d03e3006efb to efa1b8447850113eb7896652ef9e1fe1db7a88df

Bump trufflesecurity/trufflehog from b8724e87e6c7f6785bee707a82172d03e3006efb to efa1b8447850113eb7896652ef9e1fe1db7a88df #504

Workflow file for this run

name: pre-commit
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: "1"
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- run: python -m pip install pre-commit
- uses: actions/cache@v3
with:
path: ~/.cache/pre-commit/
key: pre-commit-4|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
- run: pre-commit run --show-diff-on-failure --color=always --all-files