Skip to content

Commit 8064c7e

Browse files
authored
Merge pull request #44 from boesing/bugfix/composer-lock-matrix-action
Locked dependency configuration typo
2 parents af5510a + d5d8765 commit 8064c7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/create-jobs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const createQaJobs = function (command, config) {
4545
*/
4646
const createPHPUnitJobs = function (config) {
4747
let jobs = [];
48-
if (config.lockedDependencies) {
48+
if (config.locked_dependencies) {
4949
/** Locked dependencies are always used with the minimum PHP version supported by the project. */
5050
jobs.push(createPHPUnitJob(config.minimum_version, 'locked', config));
5151
}

0 commit comments

Comments
 (0)