diff options
author | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2021-12-16 14:24:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-16 14:24:47 +0100 |
commit | 9a37ca9b480c9cd3ea6474db2c6f52908c653aaf (patch) | |
tree | 3ee506bbca954f5b7bd0acbd13f1e5cbaba2e127 /.github | |
parent | 1fdc97bb13376677536b2a300469a73f8a5c30e7 (diff) | |
parent | c3a1a66eaefac9e06385d125dd4edae3117cc9eb (diff) | |
download | nextcloud-server-9a37ca9b480c9cd3ea6474db2c6f52908c653aaf.tar.gz nextcloud-server-9a37ca9b480c9cd3ea6474db2c6f52908c653aaf.zip |
Merge pull request #29862 from nextcloud/fix/support-php-8.1-2
Support PHP 8.1 - Second batch
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lint.yml | 2 | ||||
-rw-r--r-- | .github/workflows/oci.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index db6f9bbf40c..3158b97e0c5 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['7.3', '7.4', '8.0'] + php-versions: ['7.3', '7.4', '8.0', '8.1'] name: php${{ matrix.php-versions }} lint steps: - name: Checkout diff --git a/.github/workflows/oci.yml b/.github/workflows/oci.yml index b30960bdba2..4fcfc7ff04e 100644 --- a/.github/workflows/oci.yml +++ b/.github/workflows/oci.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - php-versions: [ '7.3', '7.4', '8.0' ] + php-versions: [ '7.3', '7.4', '8.0', '8.1'] databases: [ 'oci' ] name: php${{ matrix.php-versions }}-${{ matrix.databases }} |