Skip to content

build(deps): bump actions/cache from 3.0.11 to 4.2.0 #127

build(deps): bump actions/cache from 3.0.11 to 4.2.0

build(deps): bump actions/cache from 3.0.11 to 4.2.0 #127

Workflow file for this run

name: pre-commit
on:
pull_request:
push:
branches: [master]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4.3.0
- uses: actions/cache@v4.2.0
with:
path: |
~/.cache/pre-commit
key: ${{ runner.os }}-precommit-${{ hashFiles('**/.pre-commit-config.yaml/*') }}
restore-keys: |
${{ runner.os }}-precommit-
- uses: pre-commit/action@v2.0.3
with:
token: ${{ secrets.GITHUB_TOKEN }}