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
8 changes: 4 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,6 @@ jobs:
repository: nextcloud/server
ref: ${{ matrix.server-versions }}

- name: Set up integration dependencies
working-directory: build/integration
run: composer require --dev phpunit/phpunit:~9

- name: Checkout app
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
Expand All @@ -91,6 +87,10 @@ jobs:
working-directory: apps/${{ env.APP_NAME }}
run: composer i --no-dev

- name: Set up behat dependencies
working-directory: apps/${{ env.APP_NAME }}/tests/Integration
run: composer i

- name: Set up Nextcloud for S3 primary storage
if: matrix.primary-storage == 'minio'
run: |
Expand Down
8 changes: 4 additions & 4 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions tests/Integration/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
}
},
"require-dev": {
"phpunit/phpunit": "^9.6.21",
"behat/behat": "^3.14.0",
"guzzlehttp/guzzle": "^7.9.2",
"sabre/dav": "^4.6.0"
"phpunit/phpunit": "^10.5.58",
"behat/behat": "^3.26.0",
"guzzlehttp/guzzle": "^7.10.0",
"sabre/dav": "^4.7.0"
}
}
Loading