-
Notifications
You must be signed in to change notification settings - Fork 24
fix(deps): bump CVE-affected deps [VC-53657, VC-53626] #204
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
0c8d6c0
6aa6cda
21ba194
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 |
|---|---|---|
|
|
@@ -6,8 +6,6 @@ set -o pipefail | |
|
|
||
| bandit -r vcert/ | ||
|
|
||
| # ID 40291 is pip, ignore so we can still test python 2.7 | ||
|
Contributor
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. My take here is that you guys are no longer supporting python 2?
Contributor
Author
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. Yes |
||
| #Ignoring false-positive issue with pytest. ref: https://github.com/pytest-dev/py/issues/287 | ||
| safety check -i 40291 -i 51457 | ||
| pip-audit -r requirements-build.txt | ||
|
|
||
| pytest -v --junit-xml=junit.xml --junit-prefix=`python -V | tr ' ' '_'` --cov=vcert --cov=vcert.parser --cov=vcert.policy --cov-report term --cov-report xml | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| -r requirements.in | ||
| pytest==7.4.3 | ||
| pytest-cov==4.1.0 | ||
| safety==2.3.5 | ||
| bandit==1.7.7 | ||
| pip-audit==2.9.0 | ||
| pytest==8.4.2 | ||
| pytest-cov==7.1.0 | ||
| bandit==1.8.6 |
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| requests==2.32.4 | ||
| python-dateutil==2.8.2 | ||
| cryptography==45.0.7 | ||
| python-dateutil==2.9.0.post0 | ||
| cryptography==48.0.1 | ||
| six==1.17.0 | ||
| ruamel.yaml==0.18.13 | ||
| pynacl==1.5.0 | ||
| ruamel.yaml==0.18.17 | ||
| pynacl==1.6.2 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
how is docker-entrypoint.sh being rung in line 13 if its not being copied to the docker coantainer?
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.
It is being copied,
COPY . .on line 11 copies the entire repo root into /usr/src/app, which includes docker-entrypoint.sh. The explicitCOPY docker-entrypoint.sh ./that was in the original Dockerfile was removed because it was a redundant layerCOPY . .already covers it.requirements-build.txt is still copied separately and early (line 8) for Docker layer caching so that the
pip installstep only re-runs when the lockfile changes, not on every source code change.