outdated #496
This file contains 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: | |
schedule: | |
- cron: '0 7 1 * *' | |
jobs: | |
outdated: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Just | |
uses: extractions/setup-just@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Pulling Docker images | |
run: just compose pull | |
- name: Building Docker images | |
run: just compose build | |
- name: Maintain Composer cache | |
uses: actions/cache@v4 | |
with: | |
path: api/.cache/composer | |
key: composer-${{ hashFiles('api/composer.lock') }} | |
restore-keys: composer- | |
- name: Maintain pnpm cache | |
uses: actions/cache@v4 | |
with: | |
path: app/.cache/node | |
key: pnpm-${{ hashFiles('app/pnpm-lock.yaml') }} | |
restore-keys: pnpm- | |
- name: Check for outdated packages | |
run: just outdated |