fix(ci): pin python-version to 3.12.7 in pre-pr-check workflow - #3398
Open
Harsh23Kashyap wants to merge 1 commit into
Open
fix(ci): pin python-version to 3.12.7 in pre-pr-check workflow#3398Harsh23Kashyap wants to merge 1 commit into
Harsh23Kashyap wants to merge 1 commit into
Conversation
Contributor
|
Note Gemini is unable to generate a review for this pull request due to the file types involved not being currently supported. |
Harsh23Kashyap
force-pushed
the
fix/python-version-pin-pre-pr-check
branch
from
July 8, 2026 05:37
28c5b8e to
85c844e
Compare
Contributor
Author
|
Can someone take a look when you have a chance? |
Harsh23Kashyap
force-pushed
the
fix/python-version-pin-pre-pr-check
branch
from
July 9, 2026 14:35
acfae42 to
9892915
Compare
Contributor
Author
|
Can someone take a look when you have a chance? |
3 similar comments
Contributor
Author
|
Can someone take a look when you have a chance? |
Contributor
Author
|
Can someone take a look when you have a chance? |
Contributor
Author
|
Can someone take a look when you have a chance? |
Harsh23Kashyap
force-pushed
the
fix/python-version-pin-pre-pr-check
branch
from
July 14, 2026 11:35
dc6fbe6 to
e94073d
Compare
Contributor
Author
|
Can someone take a look when you have a chance? |
1 similar comment
Contributor
Author
|
Can someone take a look when you have a chance? |
The pre-pr-check-per-plugin.yaml workflow was using `python-version: '3.12'`, which setup-python@v5 resolves to the latest 3.12.x patch on the runner image. The upload-merged-plugin.yaml workflow already pins `3.12.7` so PR-test vs merged-upload could run against different Python patches as runner images drifted. Pin both to the same patch for reproducible behavior. Fixes langgenius#3397
Harsh23Kashyap
force-pushed
the
fix/python-version-pin-pre-pr-check
branch
from
July 27, 2026 15:34
d65a834 to
ed40913
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Fixes #3397
setup-python@v5resolvespython-version: '3.12'to the latest 3.12.x patch on the runner image, which can drift over time.upload-merged-plugin.yamlalready pinned3.12.7. PR-check vs merged-upload could therefore run against different Python patches as runner images updated. Pin both to3.12.7for reproducible behavior.Change Type
Version
versioninmanifest.yaml(not the one undermeta) — N/A (workflow-only change)dify_plugin>=0.9.0is declared inpyproject.toml(or kept inrequirements.txtfor legacy plugins withoutuv.lock) — N/AVerification
name,on,jobs).python-version: 3.12.7now present in both.github/workflows/pre-pr-check-per-plugin.yaml(L82) and.github/workflows/upload-merged-plugin.yaml(L78).Notes