outdated #482
Workflow file for this run
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@v1 | |
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: Check for outdated Composer packages | |
run: just composer-outdated |