Skip to content

Commit cb064f5

Browse files
committed
Disable ssl through commands
1 parent 127303c commit cb064f5

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,6 @@ jobs:
130130
echo "PHP_FPM_UID=$(id -u)" >> "$GITHUB_ENV"
131131
echo "PHP_FPM_GID=$(id -g)" >> "$GITHUB_ENV"
132132
133-
- name: Upgrade Docker
134-
uses: docker/setup-docker-action@v4
135-
136133
- name: Checkout repository
137134
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
138135
with:

tools/local-env/scripts/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ wait_on( {
6161
* @param {string} cmd The WP-CLI command to run.
6262
*/
6363
function wp_cli( cmd ) {
64-
execSync( `npm --silent run env:cli -- ${cmd} --path=/var/www/${process.env.LOCAL_DIR}`, { stdio: 'inherit' } );
64+
execSync( `npm --silent run env:cli -- ${cmd} --path=/var/www/${process.env.LOCAL_DIR} --ssl-mode=DISABLED`, { stdio: 'inherit' } );
6565
}

0 commit comments

Comments
 (0)