Downgrade Alpine to version 3.18

In Alpine 3.19, Composer runs with PHP 8.2 failing the installation.

Related to 0b2f5e5e12

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
Maurício Meneghini Fauth 2024-06-07 19:25:06 -03:00
parent 0b2f5e5e12
commit 8245064033
No known key found for this signature in database
GPG Key ID: 6A16FD38AFC89CC8

View File

@ -55,10 +55,10 @@ jobs:
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: Print arch
run: docker run --rm ${{ matrix.arch }}/alpine:3.19 uname -a
run: docker run --rm ${{ matrix.arch }}/alpine:3.18 uname -a
- name: Run tests on php ${{ matrix.php-version }}
run: docker run -v $PWD:/app --workdir /app --rm ${{ matrix.arch }}/alpine:3.19 sh /app/do-tests.sh
run: docker run -v $PWD:/app --workdir /app --rm ${{ matrix.arch }}/alpine:3.18 sh /app/do-tests.sh
test-php:
name: Test on PHP ${{ matrix.php-version }}, ${{ matrix.composer-dependency }} and ${{ matrix.os }}