-
-
Notifications
You must be signed in to change notification settings - Fork 0
ci: pin the Python packages the spec jobs install #215
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🔒 Security & Privacy | 🟠 Major | 🏗️ Heavy lift
🧩 Analysis chain
🏁 Script executed:
Repository: productdevbook/kasapay
Length of output: 3251
🌐 Web query:
pip freeze documentation and pip requirements file --require-hashes documentation💡 Result:
pip freeze and the --require-hashes option serve different purposes in managing Python environments and ensuring security [1][2]. pip freeze The pip freeze command outputs installed packages in a requirements format [1][3]. It is primarily used to generate a list of packages and their exact versions, which can be saved to a file (traditionally named requirements.txt) to achieve reproducible environments [4][5][6]. By default, it omits essential bootstrap packages (such as pip itself) to keep the list focused on project dependencies [1][3]. It does not resolve dependencies or generate a lockfile; it simply reports the current state of the environment [1][3]. --require-hashes The --require-hashes flag is an option used with the pip install command, not pip freeze [7][8]. It enables Hash-checking Mode, a security feature that verifies the integrity of downloaded packages against pre-calculated hashes [2][9]. Key aspects of --require-hashes: - Purpose: It protects against remote tampering and network issues by ensuring that each installed package matches the hash specified in the requirements file [2][9]. - Behavior: When enabled, pip requires that every requirement in the file has an associated --hash option [2][9]. This is an all-or-nothing requirement; if any package includes a hash, hash-checking is automatically activated for all requirements [2][9]. - Usage: You can force this mode globally by passing the --require-hashes flag during installation [2][9]. This is often used in deployment scripts to verify that security hashes are present [2][9]. - Generating Hashes: Hashes can be generated using the pip hash command [10]. Note that if a package has multiple archives (e.g., source and binary distributions), you must provide hashes for all of them to avoid verification failures [2][10]. To disable the strict requirement for hashes while still verifying those that are provided, you can use the --no-require-hashes flag [2][9].
Citations:
🏁 Script executed:
Repository: productdevbook/kasapay
Length of output: 5000
Add hashes to
scripts/requirements.txtand enforce hash checking.scripts/requirements.txtcontains version pins but no--hashentries. The workflows also usepip installwithout--require-hashes. Add hashes for every resolved distribution and enable--require-hashesat each installation site.🤖 Prompt for AI Agents