Skip to content

Commit

Permalink
Updated GitHub actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentmuller committed Feb 4, 2024
1 parent 255f6e1 commit d974e3e
Show file tree
Hide file tree
Showing 9 changed files with 57 additions and 61 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/markdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Lint
uses: DavidAnson/markdownlint-cli2-action@v14
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-cs-fixer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-stan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psalm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

TBD
- Updated GitHub actions.

### [2.20.8] - 2024-01-09

Expand Down
26 changes: 11 additions & 15 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@
"HighchartsBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.8.x-dev"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
Expand All @@ -69,16 +64,17 @@
}
},
"scripts": {
"php-fixer": "vendor/bin/php-cs-fixer fix --diff --dry-run",
"php-psalm": "vendor/bin/psalm --config=psalm.xml",
"php-stan": "vendor/bin/phpstan analyse --memory-limit 2G -c phpstan.neon",
"php-rector": "vendor/bin/rector process --dry-run --config=rector.php",
"php-all": [
"@php-fixer",
"@php-psalm",
"@php-stan",
"@php-rector",
"phpunit"
"app-fixer": "vendor/bin/php-cs-fixer fix --diff --dry-run",
"app-psalm": "vendor/bin/psalm --config psalm.xml",
"app-stan": "vendor/bin/phpstan analyse --configuration phpstan.neon --memory-limit 2G",
"app-rector": "vendor/bin/rector process --dry-run --config rector.php",
"app-test": "phpunit",
"app-all": [
"@app-fixer",
"@app-psalm",
"@app-stan",
"@app-rector",
"@app-test"
]
}
}
78 changes: 39 additions & 39 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d974e3e

Please sign in to comment.