From 4a2323ff8dce3d105a0c59108d08aa239fb17d2f Mon Sep 17 00:00:00 2001 From: Maciej Ptak <0ptaq0@gmail.com> Date: Tue, 7 Jul 2026 08:56:11 +0200 Subject: [PATCH] fix(ci): pin apex-code-coverage-transformer to 2.23.2 in with-build workflow Same fix as salesforce-ci.yml: 2.23.1+ requires Node >=22 and the sf CLI runs on the workflow Node, so pin an explicit 2.23.1+ release (2.23.2) instead of @latest for deterministic installs. This workflow already defaults node-version to 22. --- .github/workflows/salesforce-ci-with-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/salesforce-ci-with-build.yml b/.github/workflows/salesforce-ci-with-build.yml index 8ddf752..e90a21b 100644 --- a/.github/workflows/salesforce-ci-with-build.yml +++ b/.github/workflows/salesforce-ci-with-build.yml @@ -350,7 +350,7 @@ jobs: - name: 🔄 Convert Apex coverage to LCOV if: inputs.upload-to-codecov && inputs.codecov-slug != '' && success() run: | - echo y | sf plugins install apex-code-coverage-transformer + echo y | sf plugins install apex-code-coverage-transformer@2.23.2 sf acc-transformer transform \ --coverage-json ./tests/apex/test-result-codecoverage.json \ --format lcovonly \