Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_antivirus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2022-04-13 14:21:24 +0300
committerRobin Appelman <robin@icewind.nl>2022-04-13 14:21:24 +0300
commit770b016916894d01b70ecc18301bc1bca71c615f (patch)
treee3aaf6f862c7c5427ad9b5d57226f4f115c29999
parent4d78db9bff981586de5baee0ec56b676c46aaa0a (diff)
install ocp without composer.lock
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r--.github/workflows/lint.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 7d6eefa..617f20e 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -34,7 +34,9 @@ jobs:
- name: Install dependencies
run: composer i --ignore-platform-reqs
- name: Install OCP package
- run: composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }}
+ run: |
+ rm composer.lock
+ composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }}
- name: Lint
run: composer run lint