Skip to content

Commit

Permalink
Merge pull request #228 from phil-davis/update-6.0-20231109
Browse files Browse the repository at this point in the history
Update CI stuff for 6.0
  • Loading branch information
phil-davis authored Nov 9, 2023
2 parents b0ab427 + fdf8565 commit 0b7f0f2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
code-analysis: 'yes'
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
Expand All @@ -35,7 +35,7 @@ jobs:
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: Cache composer dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
Expand All @@ -59,5 +59,5 @@ jobs:
run: vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-clover clover.xml

- name: Code Coverage
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
if: matrix.coverage != 'none'
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"sabre/uri" : "^2.3"
},
"require-dev" : {
"friendsofphp/php-cs-fixer": "^3.9",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit" : "^9.0"
"friendsofphp/php-cs-fixer": "^3.38",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit" : "^9.6"
},
"suggest" : {
"ext-curl" : " to make http requests with the Client class"
Expand Down
2 changes: 0 additions & 2 deletions lib/Auth/AWS.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ class AWS extends AbstractAuth
{
/**
* The signature supplied by the HTTP client.
*
* @var string
*/
private ?string $signature = null;

Expand Down

0 comments on commit 0b7f0f2

Please sign in to comment.