Skip to content

Commit

Permalink
Merge 881709d into 894a3af
Browse files Browse the repository at this point in the history
  • Loading branch information
sabbelasichon committed Jan 31, 2022
2 parents 894a3af + 881709d commit 72edbf7
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- uses: shivammathur/setup-php@v1
- uses: shivammathur/setup-php@v2
with:
php-version: 7.3
coverage: none
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
restore-keys: |
${{ runner.os }}-composer-
- uses: shivammathur/setup-php@v1
- uses: shivammathur/setup-php@v2
with:
php-version: 7.3
coverage: none
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
restore-keys: |
${{ runner.os }}-composer-
- uses: shivammathur/setup-php@v1
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none # disable xdebug, pcov
Expand Down
2 changes: 1 addition & 1 deletion src/Task/Git/AbstractCheckoutTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ protected function resolveSha1(Node $node, Deployment $deployment, array $option
$sha1 = $this->shell->execute(
"git ls-remote --sort=version:refname {$options['repositoryUrl']} 'refs/tags/{$options['tag']}' "
. "| awk '{print $1 }' "
. "| tail --lines=1",
. '| tail --lines=1',
$node,
$deployment,
true
Expand Down
1 change: 0 additions & 1 deletion tests/Unit/Task/GitCheckoutTaskTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public function executeWithEmptyOptionsAndValidSha1FetchesResetsCopiesAndCleansR
$this->assertCommandExecuted('git clean -q -d -x -ff');
}


/**
* @test
*/
Expand Down

0 comments on commit 72edbf7

Please sign in to comment.