Python: bind and recover FIDES policy approvals #7388
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: Check .md links | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - '**.md' | |
| - '.github/workflows/markdown-link-check.yml' | |
| - '.github/.linkspector.yml' | |
| schedule: | |
| - cron: "0 0 * * *" # Run at midnight UTC daily | |
| permissions: | |
| contents: read | |
| jobs: | |
| markdown-link-check: | |
| runs-on: ubuntu-22.04 | |
| # check out the latest version of the code | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Node.js | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: 20 | |
| - name: Install Chrome for Puppeteer | |
| run: npx puppeteer browsers install chrome | |
| # Checks the status of hyperlinks in all files | |
| - name: Run linkspector | |
| uses: umbrelladocs/action-linkspector@963b6264d7de32c904942a70b488d3407453049e # v1.5.1 | |
| with: | |
| reporter: local | |
| filter_mode: nofilter | |
| fail_on_error: true | |
| config_file: ".github/.linkspector.yml" |