outdated #255
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: outdated | |
| on: | |
| # Allow manual runs | |
| workflow_dispatch: | |
| # Run once a week | |
| schedule: | |
| - cron: '0 23 * * 0' # Once a week, Sundays at 11:00PM UTC (3PM PST) | |
| env: | |
| CI: true | |
| jobs: | |
| outdated: | |
| name: "Checking for outdated dependencies" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v5 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: setup Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 24 | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Check for outdated dependencies | |
| run: pnpm outdated |