Skip to content

Commit

Permalink
fix(CI) : wrong deps for php 7.3 and 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mrflos committed Sep 15, 2023
1 parent 0948c5f commit 2b963e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/phpunit-php73.yml
Expand Up @@ -60,6 +60,7 @@ jobs:
sudo chown www-data:www-data -R ${{ github.workspace }}
sudo apt update
sudo apt install --no-install-recommends --assume-yes libapache2-mod-php7.3
sudo a2enmod php7.3
sudo /etc/init.d/apache2 start
- name: Set up MySQL
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/phpunit-php82.yml
Expand Up @@ -59,7 +59,8 @@ jobs:
</VirtualHost>" | sudo tee /etc/apache2/sites-enabled/000-default.conf
sudo chown www-data:www-data -R ${{ github.workspace }}
sudo apt update
sudo apt install --no-install-recommends --assume-yes libapache2-mod-php7.3
sudo apt install --no-install-recommends --assume-yes libapache2-mod-php8.2
sudo a2enmod php8.2
sudo /etc/init.d/apache2 start
- name: Set up MySQL
Expand Down

0 comments on commit 2b963e9

Please sign in to comment.