docs(changelog): record the dependency refresh in the four pending releases #500
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: ci-security-policy | |
| on: | |
| pull_request_target: | |
| types: [opened, reopened, synchronize] | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| credential-containment: | |
| name: Credential containment policy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out trusted policy tooling | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| ref: ${{ github.workflow_sha }} | |
| path: trusted | |
| persist-credentials: false | |
| - name: Fetch exact candidate policy data | |
| env: | |
| CANDIDATE_REPOSITORY: ${{ github.event.pull_request.head.repo.full_name }} | |
| CANDIDATE_SHA: ${{ github.event.pull_request.head.sha }} | |
| GH_TOKEN: ${{ github.token }} | |
| run: python3 trusted/.github/scripts/fetch_policy_candidate.py "$GITHUB_WORKSPACE/candidate" | |
| - name: Enforce credential-containment policy | |
| run: >- | |
| python3 trusted/.github/scripts/check_credential_containment.py | |
| "$GITHUB_WORKSPACE/candidate" |