fix(cve): Upgrade rclone to 1.72.0 in alibi-detect-server image
#358
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: GB Docs Link Checker | |
| on: | |
| schedule: | |
| - cron: '0 0 */14 * *' # every two weeks at midnight UTC | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| check-docs-changes: | |
| if: github.repository == 'SeldonIO/seldon-core' && github.event_name == 'pull_request' | |
| runs-on: ubuntu-latest | |
| outputs: | |
| docs-changed: ${{ steps.changes.outputs.docs }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dorny/paths-filter@v3 | |
| id: changes | |
| with: | |
| filters: | | |
| docs: | |
| - 'docs-gb/**/*.md' | |
| # Run lychee for schedule and manual dispatch | |
| lychee-check-always: | |
| if: github.repository == 'SeldonIO/seldon-core' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run Lychee link checker on docs-gb | |
| uses: lycheeverse/[email protected] | |
| with: | |
| args: --verbose --no-progress docs-gb/**/*.md | |
| # Run lychee for PRs only if docs changed | |
| lychee-check-pr: | |
| if: github.repository == 'SeldonIO/seldon-core' && github.event_name == 'pull_request' && needs.check-docs-changes.outputs.docs-changed == 'true' | |
| needs: [check-docs-changes] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run Lychee link checker on docs-gb | |
| uses: lycheeverse/[email protected] | |
| with: | |
| args: --verbose --no-progress docs-gb/**/*.md |