From b70d85045dad582ac4dcf3ac9deeab16964792a0 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Thu, 13 Nov 2025 07:01:14 -0800 Subject: [PATCH 1/3] Add COMPOSER_AUDIT_BLOCK_INSECURE to EPV workflow --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b99456c..9facca0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -139,6 +139,7 @@ jobs: if: ${{ env.EPV != '0' }} env: PHP_VERSION: ${{ matrix.php }} + COMPOSER_AUDIT_BLOCK_INSECURE: "false" run: | if [[ "$(printf '%s\n' "$PHP_VERSION" "8.0" | sort -V | head -n1)" == "8.0" ]]; then composer require phpbb/epv:dev-master --dev --no-interaction --ignore-platform-reqs --with-all-dependencies From 61ae7c8ae7ad36ccf40b4420fd6e55556086af84 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Thu, 13 Nov 2025 07:06:04 -0800 Subject: [PATCH 2/3] Revert "Add COMPOSER_AUDIT_BLOCK_INSECURE to EPV workflow" This reverts commit b70d85045dad582ac4dcf3ac9deeab16964792a0. --- .github/workflows/tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9facca0..b99456c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -139,7 +139,6 @@ jobs: if: ${{ env.EPV != '0' }} env: PHP_VERSION: ${{ matrix.php }} - COMPOSER_AUDIT_BLOCK_INSECURE: "false" run: | if [[ "$(printf '%s\n' "$PHP_VERSION" "8.0" | sort -V | head -n1)" == "8.0" ]]; then composer require phpbb/epv:dev-master --dev --no-interaction --ignore-platform-reqs --with-all-dependencies From 1346d2d40fb5c267bc5613b2705c53e4cb963746 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Thu, 13 Nov 2025 07:09:51 -0800 Subject: [PATCH 3/3] Ignore security issues with EPV --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b99456c..ce7882f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -141,9 +141,9 @@ jobs: PHP_VERSION: ${{ matrix.php }} run: | if [[ "$(printf '%s\n' "$PHP_VERSION" "8.0" | sort -V | head -n1)" == "8.0" ]]; then - composer require phpbb/epv:dev-master --dev --no-interaction --ignore-platform-reqs --with-all-dependencies + php ../composer.phar require phpbb/epv:dev-master --dev --no-interaction --ignore-platform-reqs --with-all-dependencies else - composer require phpbb/epv:dev-master --dev --no-interaction --ignore-platform-reqs + php ../composer.phar require phpbb/epv:dev-master --dev --no-interaction --ignore-platform-reqs fi working-directory: ./phpBB3/phpBB