Skip to content

Commit 1388d88

Browse files
committed
Merge remote-tracking branch 'upstream/trunk' into try/html5lib-tests-using-group
2 parents ea9e3c2 + ffceac5 commit 1388d88

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ LOCAL_DB_TYPE=mysql
5151
# When using `mysql`, see https://hub.docker.com/_/mysql for valid versions.
5252
# When using `mariadb`, see https://hub.docker.com/_/mariadb for valid versions.
5353
##
54-
LOCAL_DB_VERSION=8.0
54+
LOCAL_DB_VERSION=8.4
5555

5656
# Whether or not to enable multisite.
5757
LOCAL_MULTISITE=false

.github/workflows/reusable-performance.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,9 @@ jobs:
263263
- name: Set the environment to the baseline version
264264
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/trunk' }}
265265
run: |
266-
npm run env:cli -- core update --version=${{ env.BASE_TAG }} --force --path=/var/www/${{ env.LOCAL_DIR }}
266+
VERSION="${{ env.BASE_TAG }}"
267+
VERSION="${VERSION%.0}"
268+
npm run env:cli -- core update --version=$VERSION --force --path=/var/www/${{ env.LOCAL_DIR }}
267269
npm run env:cli -- core version --path=/var/www/${{ env.LOCAL_DIR }}
268270
269271
- name: Run any database upgrades

.github/workflows/reusable-phpunit-tests-v3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626
description: 'Database version'
2727
required: false
2828
type: 'string'
29-
default: '8.0'
29+
default: '8.4'
3030
multisite:
3131
description: 'Whether to run tests as multisite'
3232
required: false

.github/workflows/reusable-test-local-docker-environment-v1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
description: 'Database version'
2828
required: false
2929
type: 'string'
30-
default: '8.0'
30+
default: '8.4'
3131
memcached:
3232
description: 'Whether to enable memcached'
3333
required: false

0 commit comments

Comments
 (0)