fix(ci): adopt Actions dependency lockfile (estate startup_failure remediation) #91
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
| # SPDX-License-Identifier: MPL-2.0 | |
| # This workflow is managed by gh actions-lock. | |
| name: Secret Scanner | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| # Single secret scanner. The standards reusable runs gitleaks (+ a Rust-secrets | |
| # check). An inline TruffleHog job previously lived here, but the reusable | |
| # DELIBERATELY retired TruffleHog as redundant (gitleaks gives sufficient | |
| # coverage at lower cost — see the reusable's header). Re-adding it was | |
| # duplicated work, not extra coverage, so it has been removed. See | |
| # .github/workflows/README.adoc. | |
| jobs: | |
| scan: | |
| permissions: | |
| contents: read | |
| uses: hyperpolymath/standards/.github/workflows/secret-scanner-reusable.yml@fcb8669169b4e9f5d9848608df880ae5fae812b4 | |
| secrets: inherit |