Skip to content

build(deps): bump django from 4.2.16 to 4.2.17 in /sampleproject #363

build(deps): bump django from 4.2.16 to 4.2.17 in /sampleproject

build(deps): bump django from 4.2.16 to 4.2.17 in /sampleproject #363

Workflow file for this run

# Copyright (C) 2020 Sebastian Pipping <sebastian@pipping.org>
# Licensed under the MIT license
name: Run pre-commit on all files
on:
pull_request:
push:
schedule:
- cron: '0 16 * * 5' # Every Friday at 16:00
jobs:
run_pre_commit:
name: Run pre-commit on all files
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Python 3.10
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: '3.10'
- name: Install pre-commit
run: |-
pip install \
--disable-pip-version-check \
--user \
--no-warn-script-location \
pre-commit
echo "PATH=${HOME}/.local/bin:${PATH}" >> "${GITHUB_ENV}"
- name: Install pre-commit hooks
run: |-
pre-commit install --install-hooks
- name: Run pre-commit on all files
run: |-
pre-commit run --all-files