Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion auth-and-pull-from-ghcr/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ runs:

- name: Pull image
shell: bash
run: docker pull ${{ inputs.image }}
run: docker pull --quiet ${{ inputs.image }}
2 changes: 1 addition & 1 deletion auth-and-push-to-gar/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ runs:

- name: Push image
shell: bash
run: docker push ${{ inputs.image }}
run: docker push --quiet ${{ inputs.image }}
2 changes: 1 addition & 1 deletion cached-composer-install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ runs:
env:
DEV_OPTION: ${{ inputs.no_dev == 'true' && '--no-dev' || '' }}
run: |
composer install $DEV_OPTION --no-interaction --no-progress
composer install --ansi $DEV_OPTION --no-interaction --no-progress