Skip to content

Commit b2a0cec

Browse files
authored
Merge branch 'main' into lock-free-gauge-set
2 parents c488171 + 99356e2 commit b2a0cec

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/blackbox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup PHP
2323
uses: shivammathur/setup-php@v2
2424
with:
25-
php-version: 8.2
25+
php-version: 8.3
2626
coverage: none
2727

2828
- name: Install dependencies

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup PHP
2121
uses: shivammathur/setup-php@v2
2222
with:
23-
php-version: 8.2
23+
php-version: 8.3
2424
coverage: none
2525

2626
- name: Install dependencies
@@ -34,10 +34,10 @@ jobs:
3434
fail-fast: false
3535
matrix:
3636
php:
37-
- "7.4"
3837
- "8.0"
3938
- "8.1"
4039
- "8.2"
40+
- "8.3"
4141
name: PHPStan on PHP ${{ matrix.php }}
4242
steps:
4343
- name: Checkout code

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ ubuntu-latest ]
12-
php: [ 7.4, 8.0, 8.1, 8.2 ]
12+
php: [ 8.0, 8.1, 8.2, 8.3 ]
1313
dependency-version: [ prefer-lowest, prefer-stable ]
1414
redis-version: [ 5, 6, 7 ]
1515

php-fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.1-fpm
1+
FROM php:8.2-fpm
22

33
RUN pecl install redis && docker-php-ext-enable redis
44
RUN pecl install apcu && docker-php-ext-enable apcu

0 commit comments

Comments
 (0)