chore(deps): bump the github-actions group with 15 updates #651
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: StyleLint | |
| on: | |
| # Runs on pushes targeting the default branch | |
| workflow_dispatch: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: stylelint-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| linters: | |
| name: stylelint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@a90bcbc6539c36a85cdfeb73f7e2f433735f215b # v2.15.0 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout Repo Code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Run StyleLint | |
| uses: Nick2bad4u/stylelint@bac953a3225dbed8bfafd5e66b274983892d434d # master |