Skip to content

Commit 46b6a77

Browse files
author
Oliver Lippert
committed
ci - update - use 'composer update --dry-run' for update check
Signed-off-by: Oliver Lippert <oliver@lipperts-web.de>
1 parent 5de740a commit 46b6a77

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/update-check.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
- name: Check for updates
3030
id: update
3131
run: |
32-
changes=$(composer outdated)
32+
composer update --dry-run --no-ansi &> composer.log
33+
changes=$(cat composer.log)
3334
3435
# Exit if nothing changed
3536
[[ -z $changes ]] && exit 0 || true

0 commit comments

Comments
 (0)