-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Security upgrade python from 3.9 to 3.14.1 #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| # This Dockerfile is only for GitHub Actions | ||
| FROM python:3.9 | ||
| FROM python:3.14.1 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Invalid Python version upgrade breaks Docker buildThe upgrade from |
||
|
|
||
| RUN set -ex; \ | ||
| apt-get update; \ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Dockerfile now uses
FROM python:3.14.1, but the official Python images have not shipped a 3.14 series yet (current tags stop at 3.12/3.13), so any Docker build for the GitHub Action will fail immediately when it cannot pull the base image. Please keep the base image on an available tag (e.g., a released Python version) to avoid breaking the action build.Useful? React with 👍 / 👎.