Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
micheh committed Dec 20, 2020
1 parent 09b870b commit fd64e65
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: shivammathur/setup-php@2.4.3
- uses: shivammathur/setup-php@2.9.0
with:
php-version: ${{ matrix.php-versions }}
coverage: none
if: matrix.php-versions != '7.4' || matrix.dependencies != 'highest'

- uses: shivammathur/setup-php@2.4.3
- uses: shivammathur/setup-php@2.9.0
with:
php-version: ${{ matrix.php-versions }}
coverage: pcov
Expand All @@ -49,15 +49,15 @@ jobs:
if: matrix.php-versions == '7.4' && matrix.dependencies == 'highest'

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1.0.13
uses: codecov/codecov-action@v1.1.0
if: matrix.php-versions == '7.4' && matrix.dependencies == 'highest'

phpcs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@2.4.3
- uses: shivammathur/setup-php@2.9.0
with:
php-version: 7.4
coverage: none
Expand All @@ -74,7 +74,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@2.4.3
- uses: shivammathur/setup-php@2.9.0
with:
php-version: 7.4
coverage: none
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"squizlabs/php_codesniffer": "^3.3.1",
"vimeo/psalm": "^3.12"
"vimeo/psalm": "^4.3"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions psalm.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
xmlns="https://getpsalm.org/schema/config"
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
autoloader="vendor/squizlabs/php_codesniffer/autoload.php"
errorLevel="2"
errorLevel="1"
findUnusedPsalmSuppress="true"
findUnusedVariablesAndParams="true"
resolveFromConfigFile="true"
reportMixedIssues="false"
>
<projectFiles>
<directory name="src" />
Expand Down

0 comments on commit fd64e65

Please sign in to comment.