Skip to content

Commit

Permalink
[TASK] Prevent creation of composer.lock (#536)
Browse files Browse the repository at this point in the history
Fixes #491
  • Loading branch information
oliverklee authored Apr 13, 2024
1 parent 12fdf6e commit 538b9ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
path: ~/.cache/composer
restore-keys: "php${{ matrix.php-version }}-composer-\n"
- name: "Install Composer dependencies"
run: "composer install --no-progress"
run: "composer update --no-progress"
- name: "Install development tools"
run: phive --no-progress install --trust-gpg-keys D8406D0D82947747293778314AA394086372C20A
- name: "Run command"
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
path: ~/.cache/composer
restore-keys: "php${{ matrix.php-version }}-composer-\n"
- name: "Install Composer dependencies"
run: "composer install --no-progress"
run: "composer update --no-progress"
- name: "Run Rector"
run: ".Build/vendor/bin/rector --dry-run --no-progress-bar"
unit-tests:
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"lock": false,
"preferred-install": {
"*": "dist"
},
Expand Down

0 comments on commit 538b9ba

Please sign in to comment.