build(deps): bump the codeql-action group across 1 directory with 3 updates #190
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-quick | |
| # These checks cover the whole tree, docs included, so this workflow runs | |
| # without the paths-ignore filter that test.yml uses to skip docs-only changes. | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 'release/**' | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint-quick: | |
| name: "Quick lints" | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 | |
| with: | |
| go-version: stable | |
| cache: false | |
| - name: Run editorconfig-checker | |
| run: make editorconfig-checker | |
| - name: Run yamllint | |
| run: make yamllint | |
| - name: Run file and directory name linter | |
| uses: ls-lint/action@02e380fe8733d499cbfc9e22276de5085508a5bd # v2.3.1 | |
| - name: Check hyperlinks | |
| uses: lycheeverse/lychee-action@e7477775783ea5526144ba13e8db5eec57747ce8 # v2.9.0 | |
| with: | |
| args: >- | |
| --exclude https://img.shields.io | |
| --exclude http://127.0.0.1:8080 | |
| --exclude https://github.com/lima-vm/lima/releases/download | |
| --exclude https://xbarapp.com | |
| --exclude https://api.github.com | |
| README.md | |
| token: ${{ secrets.GITHUB_TOKEN }} |