mirror of
https://github.com/filamentphp/plugin-skeleton.git
synced 2026-03-24 16:56:36 +08:00
further tweaks
This commit is contained in:
@@ -14,7 +14,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.head_ref }}
|
ref: ${{ github.head_ref }}
|
||||||
|
|
||||||
@@ -22,6 +22,6 @@ jobs:
|
|||||||
uses: aglipanci/laravel-pint-action@2.4
|
uses: aglipanci/laravel-pint-action@2.4
|
||||||
|
|
||||||
- name: Commit changes
|
- name: Commit changes
|
||||||
uses: stefanzweifel/git-auto-commit-action@v6
|
uses: stefanzweifel/git-auto-commit-action@v7
|
||||||
with:
|
with:
|
||||||
commit_message: Fix styling
|
commit_message: Fix styling
|
||||||
|
|||||||
2
.github/workflows/phpstan.yml
vendored
2
.github/workflows/phpstan.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
|||||||
name: phpstan
|
name: phpstan
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup PHP
|
- name: Setup PHP
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
|
|||||||
2
.github/workflows/run-tests.yml
vendored
2
.github/workflows/run-tests.yml
vendored
@@ -30,7 +30,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup PHP
|
- name: Setup PHP
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
|
|||||||
4
.github/workflows/update-changelog.yml
vendored
4
.github/workflows/update-changelog.yml
vendored
@@ -13,7 +13,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: main
|
||||||
|
|
||||||
@@ -24,7 +24,7 @@ jobs:
|
|||||||
release-notes: ${{ github.event.release.body }}
|
release-notes: ${{ github.event.release.body }}
|
||||||
|
|
||||||
- name: Commit updated CHANGELOG
|
- name: Commit updated CHANGELOG
|
||||||
uses: stefanzweifel/git-auto-commit-action@v5
|
uses: stefanzweifel/git-auto-commit-action@v7
|
||||||
with:
|
with:
|
||||||
branch: main
|
branch: main
|
||||||
commit_message: Update CHANGELOG
|
commit_message: Update CHANGELOG
|
||||||
|
|||||||
@@ -32,15 +32,12 @@
|
|||||||
"require-dev": {
|
"require-dev": {
|
||||||
"larastan/larastan": "^3.0",
|
"larastan/larastan": "^3.0",
|
||||||
"laravel/pint": "^1.0",
|
"laravel/pint": "^1.0",
|
||||||
"nunomaduro/collision": "^8.0",
|
"nunomaduro/collision": "^8.0|^",
|
||||||
"orchestra/testbench": "^9.0|^10.0",
|
"orchestra/testbench": "^9.0|^10.0",
|
||||||
"pestphp/pest": "^3.7|^4.0",
|
"pestphp/pest": "^3.7|^4.0",
|
||||||
"pestphp/pest-plugin-arch": "^3.0|^4.0",
|
"pestphp/pest-plugin-arch": "^3.0|^4.0",
|
||||||
"pestphp/pest-plugin-laravel": "^3.0|^4.0",
|
"pestphp/pest-plugin-laravel": "^3.0|^4.0",
|
||||||
"pestphp/pest-plugin-livewire": "^3.0|^4.0",
|
"pestphp/pest-plugin-livewire": "^3.0|^4.0",
|
||||||
"phpstan/extension-installer": "^1.1",
|
|
||||||
"phpstan/phpstan-deprecation-rules": "^2.0",
|
|
||||||
"phpstan/phpstan-phpunit": "^2.0",
|
|
||||||
"rector/rector": "^2.0",
|
"rector/rector": "^2.0",
|
||||||
"spatie/laravel-ray": "^1.26"
|
"spatie/laravel-ray": "^1.26"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -168,9 +168,6 @@ if (! $usePhpStan) {
|
|||||||
safeUnlink(__DIR__ . '/.github/workflows/phpstan.yml');
|
safeUnlink(__DIR__ . '/.github/workflows/phpstan.yml');
|
||||||
|
|
||||||
removeComposerDeps([
|
removeComposerDeps([
|
||||||
'phpstan/extension-installer',
|
|
||||||
'phpstan/phpstan-deprecation-rules',
|
|
||||||
'phpstan/phpstan-phpunit',
|
|
||||||
'larastan/larastan',
|
'larastan/larastan',
|
||||||
], 'require-dev');
|
], 'require-dev');
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user