Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-hf-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clean bump: this job pins python-version: "3.12" and passes no other inputs, so v7's removal of the pip-install input doesn't apply. v7 is an internal ESM migration (no input/output/behavior change vs v6).

with:
python-version: "3.12"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manage-hf-collection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same clean bump; pins python-version: '3.12' (single-quoted here vs double-quoted elsewhere — cosmetic, valid YAML, pre-existing). No removed inputs used.

with:
python-version: '3.12'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clean bump; pins python-version: "3.11". Runs after a checkout with persist-credentials: false; v7 changes nothing here.

with:
python-version: "3.11"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
fi

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clean bump; pins python-version: "3.11" for the PyPI publish job. No removed inputs used; the node24 runner requirement predates v7 (introduced in v6).

with:
python-version: "3.11"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-testpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clean bump; pins python-version: "3.11". Same shape as the pypi publish workflow — behavior-compatible with v6.

with:
python-version: "3.11"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clean bump; pins python-version: "3.11". This is the main CI/lint/test job; setup-python v7 is behavior-compatible with v6.

with:
python-version: "3.11"

Expand Down
Loading