We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53f558b commit f6e9689Copy full SHA for f6e9689
.github/workflows/unit-tests.yml
@@ -30,7 +30,7 @@ jobs:
30
uses: "actions/checkout@v4"
31
32
- name: "build the PHP8 environment"
33
- run: "dev/bin/docker-compose build --build-arg PHP_VERSION=${{ matrix.php }} --build-arg XDEBUG_VERSION='3.2.0' php"
+ run: "dev/bin/docker-compose build --build-arg PHP_VERSION=${{ matrix.php }} --build-arg XDEBUG_VERSION='3.3.1' php"
34
if: startsWith(matrix.php, '8')
35
36
- name: "install dependencies"
dev/docker/Dockerfile
@@ -7,7 +7,7 @@ LABEL maintainer="Petar Obradović <[email protected]>"
7
RUN mkdir -p /app/bin
8
ENV PATH /app/bin:$PATH
9
10
-ARG XDEBUG_VERSION=3.1.6
+ARG XDEBUG_VERSION=3.3.1
11
12
# Install needed core and PECL extensions
13
RUN apk add --update --no-cache --virtual .build-deps \
0 commit comments