Bump the github-actions group with 2 updates #238
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: autofix.ci | |
on: | |
workflow_call: | |
pull_request: | |
push: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
autofix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Fix lint errors with https://github.com/charliermarsh/ruff | |
- uses: install-pinned/ruff@c0209d86da57ec5577d9a9809ead92d5ac41034a | |
- run: ruff --fix-only . | |
- run: ruff format . | |
- uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc |