Skip to content

Commit 4cc04ce

Browse files
authored
Add PHP 8.3 to CI actions (#122)
1 parent 5eb5666 commit 4cc04ce

File tree

8 files changed

+44
-22
lines changed

8 files changed

+44
-22
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
| Is bugfix? | ✔️/❌
44
| New feature? | ✔️/❌
55
| Breaks BC? | ✔️/❌
6-
| Fixed issues | comma-separated list of tickets # fixed by the PR, if any

.github/dependabot.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
version: 2
22
updates:
3-
# Maintain dependencies for GitHub Actions.
4-
- package-ecosystem: "github-actions"
5-
directory: "/"
6-
schedule:
7-
interval: "daily"
8-
# Too noisy. See https://github.community/t/increase-if-necessary-for-github-actions-in-dependabot/179581
9-
open-pull-requests-limit: 0
3+
# Maintain dependencies for GitHub Actions.
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
# Too noisy. See https://github.community/t/increase-if-necessary-for-github-actions-in-dependabot/179581
9+
open-pull-requests-limit: 0
1010

11-
# Maintain dependencies for Composer
12-
- package-ecosystem: "composer"
13-
directory: "/"
14-
schedule:
15-
interval: "daily"
16-
versioning-strategy: increase-if-necessary
11+
# Maintain dependencies for Composer
12+
- package-ecosystem: "composer"
13+
directory: "/"
14+
schedule:
15+
interval: "daily"
16+
versioning-strategy: increase-if-necessary

.github/workflows/bc.yml

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
on:
2-
- pull_request
3-
- push
2+
pull_request:
3+
paths-ignore:
4+
- 'docs/**'
5+
- 'README.md'
6+
- 'CHANGELOG.md'
7+
- '.gitignore'
8+
- '.gitattributes'
9+
- 'infection.json.dist'
10+
- 'phpunit.xml.dist'
11+
- 'psalm.xml'
12+
push:
13+
branches: ['master']
14+
paths-ignore:
15+
- 'docs/**'
16+
- 'README.md'
17+
- 'CHANGELOG.md'
18+
- '.gitignore'
19+
- '.gitattributes'
20+
- 'infection.json.dist'
21+
- 'phpunit.xml.dist'
22+
- 'psalm.xml'
423

524
name: backwards compatibility
625

@@ -11,4 +30,4 @@ jobs:
1130
os: >-
1231
['ubuntu-latest']
1332
php: >-
14-
['8.0']
33+
['8.1']

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- 'psalm.xml'
1111

1212
push:
13+
branches: ['master']
1314
paths-ignore:
1415
- 'docs/**'
1516
- 'README.md'
@@ -28,4 +29,4 @@ jobs:
2829
os: >-
2930
['ubuntu-latest', 'windows-latest']
3031
php: >-
31-
['8.0', '8.1', '8.2']
32+
['8.0', '8.1', '8.2', '8.3']

.github/workflows/composer-require-checker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
- 'psalm.xml'
1212

1313
push:
14+
branches: ['master']
1415
paths-ignore:
1516
- 'docs/**'
1617
- 'README.md'
@@ -30,4 +31,4 @@ jobs:
3031
os: >-
3132
['ubuntu-latest']
3233
php: >-
33-
['8.0', '8.1', '8.2']
34+
['8.0', '8.1', '8.2', '8.3']

.github/workflows/mutation.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
- 'psalm.xml'
1010

1111
push:
12+
branches: ['master']
1213
paths-ignore:
1314
- 'docs/**'
1415
- 'README.md'
@@ -26,6 +27,6 @@ jobs:
2627
os: >-
2728
['ubuntu-latest']
2829
php: >-
29-
['8.1']
30+
['8.2']
3031
secrets:
3132
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}

.github/workflows/rector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
os: >-
2121
['ubuntu-latest']
2222
php: >-
23-
['8.2']
23+
['8.3']

.github/workflows/static.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- 'phpunit.xml.dist'
1111

1212
push:
13+
branches: ['master']
1314
paths-ignore:
1415
- 'docs/**'
1516
- 'README.md'
@@ -28,4 +29,4 @@ jobs:
2829
os: >-
2930
['ubuntu-latest']
3031
php: >-
31-
['8.0', '8.1', '8.2']
32+
['8.0', '8.1', '8.2', '8.3']

0 commit comments

Comments
 (0)