Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v4

- name: 设置 Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: '3.11'
cache: 'pip'
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
uses: actions/checkout@v4

- name: 设置 Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
uses: actions/checkout@v4

- name: 设置 Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: '3.11'
cache: 'pip'
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
uses: actions/checkout@v4

- name: 设置 Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: '3.11'
cache: 'pip'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v4

- name: 设置 Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: '3.11'
cache: 'pip'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
fetch-depth: 0 # 获取完整历史,用于生成 changelog

- name: 🐍 设置 Python 3.11
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: '3.11'
cache: 'pip'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
timeout-minutes: 2

- name: 设置Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: "3.11"

Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
timeout-minutes: 2

- name: 设置Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: "3.11"

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

- name: 🐍 设置 Python 3.11
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: '3.11'
cache: 'pip'
Expand Down
Loading