Skip to content

Commit

Permalink
Major bump cego-filebeat-logger (#18)
Browse files Browse the repository at this point in the history
* Major bump filebeat-logger-laravel

* Refactor github action workflow quality-assurance.yml

* Refactor github action workflow quality-assurance.yml

* php-cs-fixer does not support 8.2 yet

---------

Co-authored-by: Mads Jon Nielsen <[email protected]>
  • Loading branch information
firecow and Mads Jon Nielsen authored Feb 20, 2023
1 parent 6994bdc commit c16fd19
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/quality-assurance.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
on: [push, pull_request]
name: lint
on:
push:
tags-ignore:
- '**'
branches:
- master
pull_request: {}

jobs:
php-cs-fixer:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [8.1]
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: 7.4
php-version: ${{ matrix.php-version }}
- run: composer install
- run: ./vendor/bin/php-cs-fixer fix --dry-run
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
}
],
"require": {
"php": "^7.4|^8.0",
"cego/filebeat-logger": "^1.2.1",
"php": "8.x.x",
"cego/filebeat-logger": "^2.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0",
"ext-json": "*"
Expand Down

0 comments on commit c16fd19

Please sign in to comment.