Skip to content

outdated

outdated #264

Workflow file for this run

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