Skip to content

Commit 743a4a0

Browse files
We don't support PHP 8.1 anymore
1 parent a2d44a6 commit 743a4a0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/jobs/baseinstall.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
export version="$1"
66
db=${2:-install}
7-
phpversion="${3:-8.1}"
7+
phpversion="${3:-8.2}"
88
# If this script is called from unit-tests.sh, we use the test environment
99
export APP_ENV="${4:-prod}"
1010

.github/jobs/unit-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ DIR="$PWD"
88

99
export version=$1
1010
unittest=$2
11-
[ "$version" = "8.1" ] && CODECOVERAGE=1 || CODECOVERAGE=0
11+
[ "$version" = "8.2" ] && CODECOVERAGE=1 || CODECOVERAGE=0
1212

1313
# Set up
1414
export unit=1

.github/workflows/codestyle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
image: pipelinecomponents/php-codesniffer:latest
4747
strategy:
4848
matrix:
49-
PHPVERSION: ["8.1", "8.2", "8.3", "8.4"]
49+
PHPVERSION: ["8.2", "8.3", "8.4"]
5050
steps:
5151
- run: apk add git
5252
- uses: actions/checkout@v4

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3
4545
strategy:
4646
matrix:
47-
PHPVERSION: [8.1, 8.4]
47+
PHPVERSION: [8.2, 8.4]
4848
TEST: [Unit, E2E]
4949
steps:
5050
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)