Skip to content

Commit 2ab6fbf

Browse files
authored
Merge branch 'main' into patch-1
2 parents 5268996 + f8b1a49 commit 2ab6fbf

File tree

6 files changed

+126
-114
lines changed

6 files changed

+126
-114
lines changed

.gitattributes

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# Exclude files that don't need to be present in packages (so they're not downloaded by Composer)
2-
/.coveralls.yml export-ignore
3-
/.editorconfig export-ignore
4-
/.gitattributes export-ignore
5-
/.gitignore export-ignore
6-
/*.md export-ignore
7-
/*.yml export-ignore
8-
/tests export-ignore
2+
3+
.coveralls.yml export-ignore
4+
.editorconfig export-ignore
5+
.gitattributes export-ignore
6+
.github/ export-ignore
7+
.gitignore export-ignore
8+
codeception.dist.yml export-ignore
9+
docs/ export-ignore
10+
grumphp.yml export-ignore
11+
LICENSE.md export-ignore
12+
README.md export-ignore
13+
tests/ export-ignore

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- php: "8.2"
2020
coverage: "xdebug"
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- uses: shivammathur/setup-php@v2
2424
with:
2525
ini-file: development

.github/workflows/issuebot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
common-issues:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/github-script@v7
12+
- uses: actions/github-script@v8
1313
with:
1414
script: |
1515
let commonIssues = [
@@ -32,7 +32,7 @@ jobs:
3232
feature-request:
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/github-script@v7
35+
- uses: actions/github-script@v8
3636
with:
3737
script: |
3838
let body = context.payload.issue.body.toLowerCase();

.github/workflows/labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Check out code from GitHub
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Run Label Syncer
1919
uses: micnncim/action-label-syncer@v1.3.0

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"phpro/grumphp": "^1.8.0",
2929
"php-parallel-lint/php-parallel-lint": "^1.0.0",
3030
"sebastian/phpcpd": "^6.0",
31-
"squizlabs/php_codesniffer": "^3.0",
31+
"squizlabs/php_codesniffer": "^4.0",
3232
"codeception/module-cli": "^2.0",
3333
"codeception/module-filesystem": "^2.0",
3434
"codeception/module-asserts": "^2.0"

0 commit comments

Comments
 (0)