Skip to content

Commit

Permalink
ci: Drop conflicting dev dependencies for behat
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Knorr <jus@bitgrid.net>
  • Loading branch information
juliushaertl committed Oct 11, 2024
1 parent d2770ae commit df190af
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/behat-sqlite-encryption.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ jobs:

- name: Install composer dependencies
working-directory: apps/${{ env.APP_NAME }}
run: composer i
run: |
composer i
# remove as those dev dependencies pull in an outdated psr/log
composer remove --dev nextcloud/ocp
- name: Set up Nextcloud
env:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/behat-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,10 @@ jobs:

- name: Install composer dependencies
working-directory: apps/${{ env.APP_NAME }}
run: composer i
run: |
composer i
# remove as those dev dependencies pull in an outdated psr/log
composer remove --dev nextcloud/ocp
- name: Set up Nextcloud
env:
Expand Down

0 comments on commit df190af

Please sign in to comment.