Skip to content

Commit

Permalink
feat: upgrade to WordPress 6.4.1 (#1526)
Browse files Browse the repository at this point in the history
Upgrade to latest version of WordPress.

Fix issue with local devcontainer setup.
  • Loading branch information
patheard authored Nov 15, 2023
1 parent 603d190 commit cfc697e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ RUN apk add --update --virtual mod-deps autoconf alpine-sdk \
zsh-autosuggestions \
zsh-syntax-highlighting \
gettext && \
# Install from testing/edge repository
apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
# Install from v3.16 alpine community repo
apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/v3.16/community/ \
php8-xmlwriter \
php8-simplexml \
php8-tokenizer \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
WPML_USER_ID: ${{ secrets.WPML_USER_ID }}
WPML_KEY: ${{ secrets.WPML_KEY }}
# WP_VERSION needs to match the version found in ~/wordpress/docker/Dockerfile
WP_VERSION: 6.4.0
WP_VERSION: 6.4.1

jobs:
php-tests:
Expand Down
2 changes: 1 addition & 1 deletion wordpress/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN npm --unsafe-perm install
# when updating the Wordpress version, update the version in the files:
# - ~/wordpress/docker/local.Dockerfile
# - ~/github/workflows/ci.yml
FROM wordpress:6.4.0-php8.1-fpm-alpine@sha256:6ccc28f4a769f2d5f46acf04580d009911fc3db7cb548e6aa9f027675789b250
FROM wordpress:6.4.1-php8.1-fpm-alpine@sha256:3f830c1c67fbd32bf2df4e700f020ada80cb7f610a67f4422803425300b9e39a

RUN apk add --no-cache $PHPIZE_DEPS \
&& pecl install pcov \
Expand Down
2 changes: 1 addition & 1 deletion wordpress/docker/local.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# wordpress version needs to match the version found in ~/wordpress/docker/Dockerfile
FROM wordpress:6.4.0-php8.1-fpm-alpine@sha256:6ccc28f4a769f2d5f46acf04580d009911fc3db7cb548e6aa9f027675789b250
FROM wordpress:6.4.1-php8.1-fpm-alpine@sha256:3f830c1c67fbd32bf2df4e700f020ada80cb7f610a67f4422803425300b9e39a

WORKDIR /usr/src/wordpress

Expand Down

0 comments on commit cfc697e

Please sign in to comment.