Skip to content

Commit 766ac33

Browse files
committed
Update phpunit.yml
1 parent 392ce3d commit 766ac33

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/phpunit.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ jobs:
1818
- name: Setup PHP 8.3
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: 8.3.7
21+
php-version: 8.3
2222
extensions: mbstring, pdo, sqlite, pdo_sqlite
2323
ini-values: max_execution_time=180
2424

2525
- name: Install PHP extensions
26-
run: sudo apt-get install -y php-phpdbg
26+
run: |
27+
sudo apt update
28+
sudo apt-get install -y php-phpdbg
2729
2830
- name: Install Composer Dependencies
2931
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.3.7-alpine
1+
FROM php:8.3.8-alpine
22

33
ENV COMPOSER_HOME="/tmp/composer"
44

0 commit comments

Comments
 (0)