Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: ahmadnassri/action-dependabot-auto-merge@v2.6.6
- uses: ahmadnassri/action-dependabot-auto-merge@45fc124d949b19b6b8bf6645b6c9d55f4f9ac61a # v2.6.6
with:
target: patch
github-token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
10 changes: 7 additions & 3 deletions .github/workflows/deploy-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,21 @@ jobs:
steps:
# Deploys specific branch/commit to target environment
- name: Deploy to target
uses: appleboy/ssh-action@v1.2.5
uses: appleboy/ssh-action@0ff4204d59e8e51228ff73bce53f80d53301dee2 # v1.2.5
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USER }}
port: ${{ secrets.SSH_PORT }}
key: ${{ secrets.DESTINATION_SSH_PRIVATE_KEY }}
script: |
set -euo pipefail
# Non-interactive SSH does not load ~/.bashrc; nvm lives there.
export NVM_DIR="${NVM_DIR:-$HOME/.nvm}"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
if [ -s "$NVM_DIR/nvm.sh" ]; then
. "$NVM_DIR/nvm.sh"
fi
cd ${{ secrets.SSH_PATH }}
git stash -m "Stashed by ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/job/${{ job.check_run_id }}"
git pull
cd web/app/plugins/cbf-multisite
npm ci && npm run build:assets
Expand All @@ -54,7 +58,7 @@ jobs:
steps:
# Sets the Node version
- name: Setup Node.js
uses: actions/setup-node@v6.3.0
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 24
- name: Check site
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/deploy-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Setup PHP
uses: shivammathur/setup-php@2.9.0
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # v2.37.2
with:
php-version: 8.5

- name: Cache Composer dependencies
uses: actions/cache@v5.0.5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}

- name: Install dependencies
uses: php-actions/composer@v6.1.2
uses: php-actions/composer@8a65f0d3c6a1d17ca4800491a40b5756a4c164f3 # v6.1.2

- name: Install phpcs
run: vendor/bin/phpcs -i
Expand All @@ -54,12 +54,12 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v6.0.2
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}

- name: Setup Node.js
uses: actions/setup-node@v6.3.0
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 24

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ web/app/plugins/buddypages/.git
!web/app/plugins/wp-job-manager-resumes
!web/app/plugins/wp-job-manager-stats
!web/app/plugins/wp-job-manager-wc-paid-listings
!web/app/plugins/wp-mail-smtp-pro
!web/app/plugins/wp-rocket
!web/app/plugins/wpforms
web/app/mu-plugins/*
Expand Down
7 changes: 4 additions & 3 deletions .lando.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ name: codingblackfemales
recipe: wordpress
config:
database: mariadb
php: '8.3'
php: "8.5"
via: apache
webroot: web
xdebug: false
config:
php: .lando/config/php/php.ini
database: mysql.cnf
# Multisite networks must have each site listed below to work under lando
# and the URLs must match those in the wp_blogs table
proxy:
Expand All @@ -17,7 +18,7 @@ proxy:
- jobs.codingblackfemales.lndo.site
services:
appserver:
type: "php:8.3"
type: "php:8.5"
api: 3
composer_version: 2-latest
build_as_root:
Expand All @@ -44,7 +45,7 @@ services:
PHP_MEMORY_LIMIT: 256M
NODE_MAJOR: 20
database:
type: mysql:8.0
type: mysql:8.4
api: 3
portforward: 3307
# https://github.com/lando/lando/issues/1668#issuecomment-557090549
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## [0.1.51](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.50...v0.1.51) (2026-07-31)
## [0.1.50](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.49...v0.1.50) (2026-06-04)


Expand Down
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,13 @@
"wp-plugin/redis-cache": "^2.7",
"wp-plugin/remove-dashboard-access-for-non-admins": "^1.2.1",
"wp-plugin/webberzone-code-block-highlighting": "^1.0",
"wp-plugin/woocommerce": "^10.5.0",
"wp-plugin/woocommerce": "^11.0",
"wp-plugin/woocommerce-gateway-stripe": "^10.3.1",
"wp-plugin/woocommerce-paypal-payments": "^4.1.1",
"wp-plugin/woocommerce-services": "^3.4.0",
"wp-plugin/wp-graphql": "^2.8.0",
"wp-plugin/wp-job-manager": "^2.4.0",
"wp-plugin/wp-job-manager-xml-csv-listings-import": "^1.2.1",
"wp-plugin/wp-mail-smtp": "^4.7.1",
"wp-plugin/wp-maintenance-mode": "^2.6.20",
"wp-plugin/wp-rest-api-authentication": "^4.2.0",
"wp-plugin/zapier": "^1.5.3",
Expand Down
Loading