On Mon, Jun 15, 2026 at 4:20 PM Jacob Champion
<jacob.champion@enterprisedb.com> wrote:
> I'll see if the `inherit` path changes in 0003 have made it
> easier/harder to get the CPAN cache working.
Neither, it turns out, but I finally figured out what made the MinGW
`shell: bash` different from the MSVC `shell: bash`. The addition of
C:\msys64\usr\bin to the GITHUB_PATH appears to suppress the standard
PATH prefix, which is what I needed to be able to combine the two CPAN
implementations. That's attached (based on v13a).
Quick note on v13a-0004:
> + - name: Install MSYS2
> + uses: msys2/setup-msys2@66cd2cce69caa17b53920067426061ca1de3a884 # v2.31.1
> + with:
> + msystem: ${{env.MSYSTEM}}
Can we just get rid of the MSYSTEM envvar now? (And the
MSYS2_PATH_TYPE, if we replace it with `path-type: inherit` in the
action parameters?) See attached -0011.
--Jacob