ci: bump dtolnay/rust-toolchain from 3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 to fa04a1451ff1842e2626ccb99004d0195b455a88 #1373
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 | |
| # | |
| # Standalone secret scan. Previously a thin caller of | |
| # `hyperpolymath/standards/.github/workflows/secret-scanner-reusable.yml` | |
| # with `secrets: inherit`; that cross-repo dependency startup-failed (the | |
| # caller's `concurrency:` block stacked on the reusable's — the BP008 class, | |
| # see spark-theatre-gate.yml) and required inheriting org secrets. This | |
| # self-contained version runs a pure-shell high-confidence scan | |
| # (tools/ci/secret-scan-standalone.sh), needs no secrets, and as a normal | |
| # workflow can keep its concurrency block. | |
| name: Secret Scanner | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| scan: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Run standalone secret scan | |
| run: ./tools/ci/secret-scan-standalone.sh |