build(deps): bump the actions-deps group with 3 updates #1265
Workflow file for this run
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: Lint | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| schedule: | |
| - cron: '36 15 * * 5' | |
| permissions: | |
| contents: read | |
| env: | |
| GOTOOLCHAIN: "local" | |
| jobs: | |
| eslint: | |
| permissions: | |
| security-events: write | |
| checks: write | |
| name: ESLint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Setup UI dependencies | |
| uses: ./.github/actions/setup-ui-deps | |
| - name: Run ESLint | |
| working-directory: ./ui | |
| run: >- | |
| pnpm eslint . | |
| --format @microsoft/eslint-formatter-sarif | |
| --output-file eslint-results.sarif | |
| continue-on-error: true | |
| - name: Upload analysis results to GitHub | |
| uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3.29.5 | |
| with: | |
| sarif_file: ./ui/eslint-results.sarif | |
| wait-for-processing: true | |
| golangci-lint: | |
| name: GolangCI Lint | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| checks: write | |
| steps: | |
| - name: Checkout Actions Repository | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Setup Go | |
| uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 | |
| with: | |
| go-version: '1.25.1' | |
| cache: false | |
| check-latest: true | |
| - name: Run golangci-lint | |
| uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0 | |
| with: | |
| version: 'latest' | |
| install-mode: 'binary' | |
| args: '--output.text.path stdout --output.sarif.path golangci-lint-results.sarif' | |
| continue-on-error: true | |
| - name: Upload analysis results to GitHub | |
| uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3.29.5 | |
| with: | |
| sarif_file: ./golangci-lint-results.sarif | |
| wait-for-processing: true | |
| typos: | |
| name: Spell Check with Typos | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: typos-action | |
| uses: crate-ci/typos@80c8a4945eec0f6d464eaf9e65ed98ef085283d1 # v1.38.1 | |
| with: | |
| config: typos.toml |