Skip to content

Commit 7e0cbfa

Browse files
authored
Merge pull request #145 from Chris53897/feature/fix-ci-deprecations
chore: fix ci deprecations, add testruns for PHP 8.2 and 8.3
2 parents 12e9ae3 + 11a20cc commit 7e0cbfa

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/static_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
static_tests:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- uses: shivammathur/setup-php@v2
1515
with:
1616
php-version: 8.1

.github/workflows/tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,16 @@ jobs:
1313
matrix:
1414
php:
1515
- "8.1"
16+
- "8.2"
17+
- "8.3"
1618
dependency-version:
1719
# - prefer-lowest
1820
- prefer-stable
1921

2022
name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }} - tests
2123
steps:
2224
# basically git clone
23-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v4
2426

2527
- name: Setup PHP
2628
# use PHP of specific version

0 commit comments

Comments
 (0)