Skip to content

Commit

Permalink
Updated dependencies to be used in kaniko
Browse files Browse the repository at this point in the history
  • Loading branch information
sebprt committed Dec 18, 2023
1 parent e680ca4 commit 04c69fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Feature/Logger/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function compile(array $config): Repository

$monologBuilder = new Builder\MonologLogger($config['channel']);

$repository->addPackages('monolog/monolog:^2.5');
$repository->addPackages('monolog/monolog:*');

foreach ($config['destinations'] as $destination) {
if (\array_key_exists('stream', $destination)) {
Expand Down
8 changes: 4 additions & 4 deletions src/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ private function compileWorkflow(array $config): Satellite\Builder\Repository\Wo
$repository = new Satellite\Builder\Repository\Workflow($workflow);

$repository->addPackages(
'php-etl/satellite-contracts:>=0.1.1 <0.2',
'php-etl/pipeline-contracts:>=0.5.1 <0.6',
'php-etl/action-contracts:>=0.2.0 <0.3',
'php-etl/satellite-contracts:">=0.1.1 <0.2"',
'php-etl/pipeline-contracts:">=0.5.1 <0.6"',
'php-etl/action-contracts:">=0.2.0 <0.3"',
'php-etl/workflow:*',
);

Expand Down Expand Up @@ -328,7 +328,7 @@ private function compilePipelineJob(array $config): Satellite\Builder\Repository
$repository = new Satellite\Builder\Repository\Pipeline($pipeline);

$repository->addPackages(
'php-etl/pipeline-contracts:>=0.5.1 <0.6',
'php-etl/pipeline-contracts:">=0.5.1 <0.6"',
'php-etl/pipeline:*',
'php-etl/console-state:*',
'php-etl/pipeline-console-runtime:*',
Expand Down

0 comments on commit 04c69fa

Please sign in to comment.