Update actions/checkout action to v4 #277
Workflow file for this run
This file contains 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: Check codebase using Sourcery | |
on: | |
push: | |
paths: | |
- '.github/workflows/sourcery.yml' | |
- 'projects/**.py' | |
- 'projects/**.ts' | |
- 'projects/**.js' | |
jobs: | |
review-with-sourcery: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- uses: sourcery-ai/action@v1 | |
with: | |
in_place: true | |
token: ${{ secrets.SOURCERY_TOKEN }} | |
- name: push | |
continue-on-error: true | |
run: | | |
git config --global user.name 'MisileLaboratory' | |
git config --global user.email '[email protected]' | |
git commit -am "sourcery change" | |
git push |