From 8f920978c77234432c601b252fbc7e2fb82e7a77 Mon Sep 17 00:00:00 2001 From: Daniel Widgren Date: Tue, 11 Aug 2026 21:33:29 +0200 Subject: [PATCH] chore(ci): bump erlang-ci to v2.1.7 Picks up the ELP fixes in erlang-ci#71/#72/#73: the elp action resolves its binary from the release instead of a hardcoded OTP-major table, and compiles the test profile before linting so parse transforms from test-only deps resolve. Neither changes anything for shigoto today - it is on OTP 28, which the old table covered, and it has no test module pulling in a parse transform - but it stops the next OTP bump from silently disabling the ELP jobs. Verified before bumping that this does not turn the lint gate red: `elp lint` reports 0 errors under both the old default-profile compile and the new test-profile one (5 warnings either way). release.yml is byte-identical between v2.0.9 and v2.1.7, so both pins move together. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2455446..115c6bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: ci: - uses: Taure/erlang-ci/.github/workflows/ci.yml@v2.0.9 + uses: Taure/erlang-ci/.github/workflows/ci.yml@v2.1.7 permissions: contents: write pull-requests: write @@ -30,6 +30,6 @@ jobs: release: needs: ci if: ${{ github.event_name == 'push' }} - uses: Taure/erlang-ci/.github/workflows/release.yml@v2.0.9 + uses: Taure/erlang-ci/.github/workflows/release.yml@v2.1.7 permissions: contents: write