Skip to content

Commit 2816357

Browse files
committed
update CI workflow
1 parent 8346b7c commit 2816357

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
push:
66
branches:
7-
- "master"
7+
- "*"
88

99
env:
1010
COMPOSER_ROOT_VERSION: "1.99.99"
@@ -17,9 +17,9 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
php-version: [ '8.1', '8.2', '8.3']
20+
php-version: [ '8.1', '8.2', '8.3', '8.4']
2121
steps:
22-
- uses: "actions/checkout@v2"
22+
- uses: "actions/checkout@v4"
2323
- uses: "shivammathur/setup-php@v2"
2424
with:
2525
php-version: "${{ matrix.php-version }}"
@@ -51,9 +51,9 @@ jobs:
5151
strategy:
5252
fail-fast: false
5353
matrix:
54-
php-version: [ '8.1', '8.2', '8.3' ]
54+
php-version: [ '8.1', '8.2', '8.3', '8.4' ]
5555
steps:
56-
- uses: "actions/checkout@v2"
56+
- uses: "actions/checkout@v4"
5757
- uses: "shivammathur/setup-php@v2"
5858
with:
5959
php-version: "${{ matrix.php-version }}"
@@ -62,8 +62,8 @@ jobs:
6262
tools: "composer"
6363
- name: "Prepare for tests"
6464
run: "mkdir -p build/logs"
65-
- uses: "ramsey/composer-install@v2"
65+
- uses: "ramsey/composer-install@v3"
6666
- name: "Run unit tests"
6767
run: "./vendor/bin/phpunit --colors=always --coverage-clover build/logs/clover.xml --coverage-text"
6868
- name: "Publish coverage report to Codecov"
69-
uses: "codecov/codecov-action@v2"
69+
uses: "codecov/codecov-action@v5"

0 commit comments

Comments
 (0)