chore(deps): update dependency vue-tsc to v3.2.7 #1967
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 must be autofix.ci for security reasons | |
| # ref: https://autofix.ci/security | |
| name: autofix.ci | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: {} | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| autofix: | |
| name: Autofix | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| permissions: | |
| contents: read # for checkout | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Install mise | |
| uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1 | |
| with: | |
| version: 2026.4.17 | |
| - name: Re-install Rust | |
| # cache doesn't work well with rust | |
| run: mise install rust --force | |
| - name: Run autofix | |
| run: | | |
| mise run render --continue-on-error | |
| mise run check --continue-on-error | |
| continue-on-error: true | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| - name: autofix.ci | |
| uses: autofix-ci/action@c5b2d67aa2274e7b5a18224e8171550871fc7e4a # v1.3.4 | |
| with: | |
| commit-message: "style: apply automated fixes" | |
| # disable fail-fast to avoid notifications of canceled workflows | |
| fail-fast: false | |
| actions-timeline: | |
| name: Generate Actions Timeline | |
| needs: | |
| - autofix | |
| if: ${{ !cancelled() }} | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| permissions: | |
| actions: read | |
| steps: | |
| - name: actions-timeline | |
| uses: Kesin11/actions-timeline@44c9c178ffb2fb1d9859614a3ffa79ccfb77565e # v3.1.0 |