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 @@ -22,7 +22,7 @@ jobs:

steps:
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: 设置 Python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:

steps:
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: 设置 Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:

steps:
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: 设置 Python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:

steps:
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: 设置 Python
uses: actions/setup-python@v5
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 @@ -20,7 +20,7 @@ jobs:

steps:
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: 设置 Python
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# 准备环境
# ------------------------------------------------------------------------
- name: 📥 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0 # 获取完整历史,用于生成 changelog

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v7
timeout-minutes: 2

- name: 设置Python
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:

steps:
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v7
timeout-minutes: 2

- name: 设置Python
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:

steps:
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0
timeout-minutes: 3
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 @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 📥 检出代码(完整历史,用于计算版本与生成日志)
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0
persist-credentials: false
Expand Down
Loading