chore(deps): update dependency jsdom to v30 #725
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 | |
| # PR-only: branch protection makes the merge commit identical to the | |
| # last PR head, so re-running on push to main is duplicate work. See | |
| # DevSecNinja/.github docs/workflow-trigger-conventions.md. | |
| on: | |
| pull_request: | |
| workflow_dispatch: # checkov:skip=CKV_GHA_7: Validation workflow only -- no artifacts produced. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| uses: DevSecNinja/.github/.github/workflows/lint.yml@27fd66740c629ea38380dcd3bf93e7bc74c54247 # v1.9.0 | |
| permissions: | |
| contents: read | |
| security-events: write | |
| with: | |
| # renovate: datasource=github-releases depName=jdx/mise | |
| mise-version: "2026.8.6" | |
| # renovate: datasource=github-releases depName=golangci/golangci-lint | |
| golangci-lint-version: "v2.12.2" | |
| lint-go: false | |
| # No shell scripts in this repo; skip shell linters that otherwise fail | |
| # when invoked with zero files. | |
| lint-shellcheck: false | |
| lint-shfmt: false |