Closed jedian closed 8 months ago
Interesting, Python 3.12 works just fine in the CI: https://github.com/EnricoMi/publish-unit-test-result-action/actions/runs/8077203766/job/22067042868
Looks like a caching issue. I'll investigate.
Please test my fix:
uses: EnricoMi/publish-unit-test-result-action/linux@py-3.12
@EnricoMi This worked successfully! Thanks a lot!
The fix has been released.
I have a private repository that uses this action and when we tried to upgrade the python version to 3.12, we use it like this in our yaml file:
But after trying to upgrade the python version from 3.10.13 (on which it works well) to 3.12.0, this is the log:
I guess this error makes sense since this action pins
cffi
to1.15.1
. According to the official changelog (https://cffi.readthedocs.io/en/latest/whatsnew.html#v1-16-0rc1) support for python 3.12 was added in1.16.0rc1
.