VaultVulp / action-pipenv

Use pipenv commands in your GitHub Actions Workflow
MIT License
33 stars 9 forks source link

Broken builds #4

Closed daxaxelrod closed 1 year ago

daxaxelrod commented 1 year ago

Seems like the dockerfile isnt too specific with the base python image.

Seems like the default 3 container was recently bumped to 3.11.x https://hub.docker.com/layers/library/python/3/images/sha256-35483f08b07e42d712ba92576c0d09e7a077d33677855d3276190b65dc4aec30?context=explore

https://github.com/docker-library/python/blob/5d908b0477c003712550c84ac4d133367b912f78/3.11/bookworm/Dockerfile

Which broke my build that relies on 3.9

https://github.com/daxaxelrod/open_insure/actions/runs/5367821262/jobs/9738271071

daxaxelrod commented 1 year ago

Verified that 3.9 -> 3.11 was the core issue, fixed for myself by upgrading my python version. https://github.com/daxaxelrod/open_insure/actions/runs/5367880920/jobs/9738369748