Skip to content

Commit

Permalink
Update package updates check
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin de Keijzer committed Mar 2, 2022
1 parent c3ce187 commit fd439c9
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/update-monday.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,21 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
extensions: zip

- name: Validate composer.json and composer.lock
run: composer validate

- name: Install dependencies
- name: Update dependencies
run: composer update --prefer-dist --no-progress --no-suggest

- name: Find and report outdated dependencies
run: composer outdated --direct --strict
run: composer outdated --strict --direct

- uses: stefanzweifel/git-auto-commit-action@v4
with:
file_pattern: composer.lock

0 comments on commit fd439c9

Please sign in to comment.