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
Jump to file
Failed to load files.
Loading
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 @@ -5,7 +5,7 @@ name: PR Auto Merge
# Controls when the action will run. Triggers the workflow on pull request events
on:
pull_request:
branches: [ develop ]
branches: [develop]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand All @@ -16,7 +16,7 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: ahmadnassri/action-dependabot-auto-merge@v2.6.6
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
# Deploys specific branch/commit to target environment
- name: Deploy to target
uses: appleboy/ssh-action@v1
uses: appleboy/ssh-action@v1.2.5
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USER }}
Expand All @@ -49,10 +49,10 @@ jobs:
steps:
# Sets the Node version
- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v6.3.0
with:
node-version: "24.x"
node-version: 24
- name: Check site
uses: jtalk/url-health-check-action@v5
uses: jtalk/url-health-check-action@e7d5ebdc9027fbf494d2d034f3e8fc78f8b7a2b9
with:
url: ${{ vars.DESTINATION_URL }}
16 changes: 8 additions & 8 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
- uses: actions/checkout@v6.0.2

- name: Setup PHP
uses: shivammathur/setup-php@v2
uses: shivammathur/setup-php@2.9.0
with:
php-version: 8.2

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

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

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

steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6.0.2
with:
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}

- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v6.3.0
with:
node-version: "20.x"
node-version: 24

- name: Install GitHub CLI
run: |
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Deploy to hosting environment
env:
WORKFLOW_ID: ${{ 'deploy-application.yml' }}
uses: actions/github-script@v8
uses: actions/github-script@v9.0.0
with:
github-token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
script: |-
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.43](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.42...v0.1.43) (2026-04-17)


### Bug Fixes

* harmonise Markdown and Code block styling ([f65c39f](https://github.com/CodingBlackFemales/wordpress/commit/f65c39f7bb333f06dd5f8c53aabc9f64e112b7f5))

## [0.1.42](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.41...v0.1.42) (2026-03-25)


Expand Down
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
"issues": "https://github.com/CodingBlackFemales/wordpress/issues"
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:CodingBlackFemales/learndash-bulk-lessons-or-topics.git"
},
{
"name": "wp-packages",
"type": "composer",
Expand Down Expand Up @@ -59,6 +63,7 @@
"roots/bedrock-disallow-indexing": "^2.0.0",
"roots/multisite-url-fixer": "^1.1.0",
"roots/wp-config": "1.0.0",
"serenichron/learndash-bulk-lessons-or-topics": "^1.2.1",
"sleiman/airtable-php": "^3.0.0",
"symfony/cache": "~7.3.0",
"vlucas/phpdotenv": "^5.6.3",
Expand Down
36 changes: 35 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cbf-wordpress",
"version": "0.1.42",
"version": "0.1.43",
"description": "[![Packagist](https://img.shields.io/packagist/v/roots/bedrock.svg?style=flat-square)](https://packagist.org/packages/roots/bedrock) [![Build Status](https://img.shields.io/travis/roots/bedrock.svg?style=flat-square)](https://travis-ci.org/roots/bedrock)",
"devDependencies": {
"@commitlint/cli": "^19.0",
Expand Down
Loading