Skip to content

Commit b57d128

Browse files
committed
further tweaks
1 parent 4ed481f commit b57d128

File tree

6 files changed

+7
-13
lines changed

6 files changed

+7
-13
lines changed

.github/workflows/fix-php-code-style-issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
with:
1919
ref: ${{ github.head_ref }}
2020

2121
- name: Fix PHP code style issues
2222
uses: aglipanci/laravel-pint-action@2.4
2323

2424
- name: Commit changes
25-
uses: stefanzweifel/git-auto-commit-action@v6
25+
uses: stefanzweifel/git-auto-commit-action@v7
2626
with:
2727
commit_message: Fix styling

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: phpstan
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515

1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout code
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434

3535
- name: Setup PHP
3636
uses: shivammathur/setup-php@v2

.github/workflows/update-changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
with:
1818
ref: main
1919

@@ -24,7 +24,7 @@ jobs:
2424
release-notes: ${{ github.event.release.body }}
2525

2626
- name: Commit updated CHANGELOG
27-
uses: stefanzweifel/git-auto-commit-action@v5
27+
uses: stefanzweifel/git-auto-commit-action@v7
2828
with:
2929
branch: main
3030
commit_message: Update CHANGELOG

composer.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,12 @@
3232
"require-dev": {
3333
"larastan/larastan": "^3.0",
3434
"laravel/pint": "^1.0",
35-
"nunomaduro/collision": "^8.0",
35+
"nunomaduro/collision": "^8.0|^",
3636
"orchestra/testbench": "^9.0|^10.0",
3737
"pestphp/pest": "^3.7|^4.0",
3838
"pestphp/pest-plugin-arch": "^3.0|^4.0",
3939
"pestphp/pest-plugin-laravel": "^3.0|^4.0",
4040
"pestphp/pest-plugin-livewire": "^3.0|^4.0",
41-
"phpstan/extension-installer": "^1.1",
42-
"phpstan/phpstan-deprecation-rules": "^2.0",
43-
"phpstan/phpstan-phpunit": "^2.0",
4441
"rector/rector": "^2.0",
4542
"spatie/laravel-ray": "^1.26"
4643
},

configure.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,6 @@
168168
safeUnlink(__DIR__ . '/.github/workflows/phpstan.yml');
169169

170170
removeComposerDeps([
171-
'phpstan/extension-installer',
172-
'phpstan/phpstan-deprecation-rules',
173-
'phpstan/phpstan-phpunit',
174171
'larastan/larastan',
175172
], 'require-dev');
176173

0 commit comments

Comments
 (0)