chore(deps): update crate-ci/typos action to v1.28.3 #7494
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 # For security reasons, the workflow in which the autofix.ci action is used must be named "autofix.ci". | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
paths-ignore: | |
- "!.github/workflows/ci.yml" | |
- "!.github/actions/clone-submodules/action.yml" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: ${{ github.ref_name != 'main' }} | |
jobs: | |
autofix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: taiki-e/[email protected] | |
- uses: oxc-project/[email protected] | |
with: | |
restore-cache: false | |
tools: just,cargo-shear@1,dprint | |
components: rustfmt | |
- name: Restore dprint plugin cache | |
id: cache-restore | |
uses: actions/cache/restore@v4 | |
with: | |
key: dprint-autofix-ci-${{ runner.os }}-${{ hashFiles('dprint.json') }} | |
path: ~/.cache/dprint | |
- run: just fmt | |
- uses: autofix-ci/[email protected] | |
with: | |
fail-fast: false | |
- name: Save dprint plugin cache | |
if: ${{ github.ref_name == 'main' }} | |
id: cache-save | |
uses: actions/cache/save@v4 | |
with: | |
key: ${{ steps.cache-restore.outputs.cache-primary-key }} | |
path: ~/.cache/dprint |