Bump globals from 17.5.0 to 17.6.0 in /web-client #24
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: Fallow web client | |
| # yamllint disable-line rule:truthy | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| paths: | |
| - "web-client/**" | |
| - ".fallowrc.json" | |
| - ".github/workflows/fallow-web-client.yml" | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| paths: | |
| - "web-client/**" | |
| - ".fallowrc.json" | |
| - ".github/workflows/fallow-web-client.yml" | |
| workflow_dispatch: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| fallow: | |
| name: Fallow | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run Fallow on changed files | |
| if: github.event_name != 'workflow_dispatch' | |
| uses: fallow-rs/fallow@v2 | |
| with: | |
| root: . | |
| format: sarif | |
| changed-since: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event.before }} | |
| - name: Run Fallow full scan | |
| if: github.event_name == 'workflow_dispatch' | |
| uses: fallow-rs/fallow@v2 | |
| with: | |
| root: . | |
| format: sarif |