Skip to content

Add the $old_user_data parameter to the wp_set_password action to match WordPress 6.7 #31

Add the $old_user_data parameter to the wp_set_password action to match WordPress 6.7

Add the $old_user_data parameter to the wp_set_password action to match WordPress 6.7 #31

Workflow file for this run

name: Main
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
coverage: xdebug
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get composer cache directory
id: composercache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.composercache.outputs.dir }}
key: ${{ runner.os }}-8.0.x-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-8.0.x-composer-
- name: Install Composer dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: PHP int
run: composer run-script lint
- name: PHP test
run: composer run-script test