chore(deps): upgrade redis:alpine docker digest to becdda6 #342
This file contains hidden or 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: | |
| pull_request: | |
| types: [opened, synchronize] | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| name: Autofix Pull Request | |
| runs-on: ubuntu-latest | |
| if: github.base_ref == github.event.repository.default_branch | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| fetch-depth: 0 # We need the full history for comparing branches | |
| ref: ${{ github.head_ref }} # Check out the PR branch | |
| - name: Setup PDM | |
| uses: pdm-project/setup-pdm@94a823180e06fcde4ad29308721954a521c96ed0 # v4 | |
| with: | |
| cache: true | |
| - name: Install dependencies | |
| run: pdm install -d | |
| - name: Run linting | |
| run: pdm run lint | |
| - name: Run formatting | |
| run: pdm run format | |
| - uses: autofix-ci/action@c5b2d67aa2274e7b5a18224e8171550871fc7e4a # v1.3.4 | |
| if: always() |