Skip to content

Commit 376b7e8

Browse files
Merge pull request #55507 from nextcloud/techdebt/noid/bye-bye-8.1
fix(PHP): Drop PHP 8.1 for Nextcloud 33
2 parents 88e2e4f + 405b52f commit 376b7e8

32 files changed

+48
-49
lines changed

.github/workflows/autocheckers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
strategy:
4848
matrix:
49-
php-versions: ['8.1']
49+
php-versions: ['8.2']
5050

5151
name: PHP checkers
5252

@@ -75,7 +75,7 @@ jobs:
7575

7676
strategy:
7777
matrix:
78-
php-versions: ['8.1']
78+
php-versions: ['8.2']
7979

8080
name: Translation and Files checkers
8181

.github/workflows/files-external-ftp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ jobs:
4545
strategy:
4646
fail-fast: false
4747
matrix:
48-
php-versions: ['8.1', '8.4']
48+
php-versions: ['8.2', '8.4']
4949
ftpd: ['proftpd', 'vsftpd', 'pure-ftpd']
5050
include:
51-
- php-versions: '8.1'
51+
- php-versions: '8.2'
5252
coverage: ${{ github.event_name != 'pull_request' }}
5353

5454
name: php${{ matrix.php-versions }}-${{ matrix.ftpd }}

.github/workflows/files-external-s3.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
fail-fast: false
4747
matrix:
48-
php-versions: ['8.1', '8.2', '8.4']
48+
php-versions: ['8.2', '8.4']
4949
include:
5050
- php-versions: '8.3'
5151
coverage: ${{ github.event_name != 'pull_request' }}
@@ -134,7 +134,7 @@ jobs:
134134

135135
strategy:
136136
matrix:
137-
php-versions: ['8.1', '8.2', '8.4']
137+
php-versions: ['8.2', '8.4']
138138
include:
139139
- php-versions: '8.3'
140140
coverage: ${{ github.event_name != 'pull_request' }}

.github/workflows/files-external-sftp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ jobs:
4545
strategy:
4646
fail-fast: false
4747
matrix:
48-
php-versions: ['8.1', '8.4']
48+
php-versions: ['8.2', '8.4']
4949
sftpd: ['openssh']
5050
include:
51-
- php-versions: '8.1'
51+
- php-versions: '8.2'
5252
coverage: ${{ github.event_name != 'pull_request' }}
5353

5454
name: php${{ matrix.php-versions }}-${{ matrix.sftpd }}

.github/workflows/files-external-smb-kerberos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ jobs:
6767
- name: Pull images
6868
run: |
6969
docker pull ghcr.io/icewind1991/samba-krb-test-dc
70-
docker pull ghcr.io/icewind1991/samba-krb-test-apache
70+
docker pull ghcr.io/icewind1991/samba-krb-test-apache-gssapi:8.4
7171
docker pull ghcr.io/icewind1991/samba-krb-test-client
7272
docker tag ghcr.io/icewind1991/samba-krb-test-dc icewind1991/samba-krb-test-dc
73-
docker tag ghcr.io/icewind1991/samba-krb-test-apache icewind1991/samba-krb-test-apache
73+
docker tag ghcr.io/icewind1991/samba-krb-test-apache-gssapi:8.4 icewind1991/samba-krb-test-apache-gssapi
7474
docker tag ghcr.io/icewind1991/samba-krb-test-client icewind1991/samba-krb-test-client
7575
7676
- name: Setup AD-DC

.github/workflows/files-external-smb.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,8 @@ jobs:
4545
strategy:
4646
fail-fast: false
4747
matrix:
48-
php-versions: ['8.1']
4948
include:
50-
- php-versions: '8.1'
49+
- php-versions: '8.2'
5150
coverage: ${{ github.event_name != 'pull_request' }}
5251

5352
name: php${{ matrix.php-versions }}-smb

.github/workflows/files-external-webdav.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
fail-fast: false
4747
matrix:
48-
php-versions: ['8.1', '8.2', '8.3', '8.4']
48+
php-versions: ['8.3', '8.4']
4949
include:
5050
- php-versions: '8.2'
5151
coverage: ${{ github.event_name != 'pull_request' }}

.github/workflows/files-external.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
fail-fast: false
4646
matrix:
47-
php-versions: ['8.1', '8.2', '8.3', '8.4']
47+
php-versions: ['8.3', '8.4']
4848
include:
4949
- php-versions: '8.2'
5050
coverage: ${{ github.event_name != 'pull_request' }}

.github/workflows/integration-dav.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
fail-fast: false
4747
matrix:
48-
php-versions: ['8.1']
48+
php-versions: ['8.2']
4949
endpoint: ['old', 'new']
5050
service: ['CalDAV', 'CardDAV']
5151

.github/workflows/integration-litmus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
fail-fast: false
4747
matrix:
48-
php-versions: ['8.1']
48+
php-versions: ['8.2']
4949
endpoint: ['webdav', 'dav']
5050

5151
name: Litmus WebDAV ${{ matrix.endpoint }}

0 commit comments

Comments
 (0)