build(deps): bump actions/checkout from 6.0.2 to 6.0.3 #18
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
| # Fallow PR review, preserved from the old hand-written CI when the | |
| # verify graph moved to the generated async-pipeline workflow. | |
| name: Fallow | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| fallow-pr-review: | |
| name: Fallow PR review | |
| runs-on: ubuntu-latest | |
| env: | |
| FALLOW_VERSION: 2.84.0 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | |
| with: | |
| node-version: 24.x | |
| - name: Resolve Fallow base | |
| run: | | |
| if [ "${{ github.event_name }}" = "pull_request" ]; then | |
| echo "FALLOW_BASE=${{ github.event.pull_request.base.sha }}" >> "$GITHUB_ENV" | |
| elif git rev-parse --verify HEAD~1 >/dev/null 2>&1; then | |
| echo "FALLOW_BASE=HEAD~1" >> "$GITHUB_ENV" | |
| else | |
| echo "FALLOW_BASE=HEAD" >> "$GITHUB_ENV" | |
| fi | |
| - name: Run Fallow PR review | |
| run: | | |
| set -o pipefail | |
| git diff --unified=0 "$FALLOW_BASE"...HEAD | npm exec --yes --package "fallow@${FALLOW_VERSION}" -- fallow audit \ | |
| --diff-file - \ | |
| --base "$FALLOW_BASE" \ | |
| --gate new-only \ | |
| --no-cache \ | |
| --format markdown \ | |
| --fail-on-issues |