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
2 changes: 1 addition & 1 deletion .github/workflows/black.format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: psf/black@stable
6 changes: 3 additions & 3 deletions .github/workflows/exe-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: windows-latest
steps:
- name: checkout babeldoc metadata
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: funstory-ai/BabelDOC
path: babeldoctemp1234567
Expand All @@ -29,7 +29,7 @@ jobs:
path: ~/.cache/babeldoc
key: test-1-babeldoc-assets-${{ hashFiles('babeldoctemp1234567/babeldoc/assets/embedding_assets_metadata.py') }}
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup uv with Python ${{ env.WIN_EXE_PYTHON_VERSION }}
uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5.3.1
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
runs-on: windows-latest
steps:
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Download build artifact
uses: actions/download-artifact@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/fork-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Docker meta
id: meta
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
if: needs.check-repository.outputs.is_main_repo != 'true'
steps:
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup uv with Python ${{ env.WIN_EXE_PYTHON_VERSION }}
uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5.3.1
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
runs-on: windows-latest
steps:
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Download build artifact
uses: actions/download-artifact@v4
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
is_release: ${{ steps.check-version.outputs.tag }}
version: ${{ steps.check-version.outputs.tag && steps.get-release-version.outputs.version || steps.get-dev-version.outputs.version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
persist-credentials: true
fetch-depth: 2
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup uv with Python 3.12
uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5.3.1
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
if: needs.check-repository.outputs.is_main_repo == 'true'
steps:
- name: checkout babeldoc metadata
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: funstory-ai/BabelDOC
path: babeldoctemp1234567
Expand All @@ -335,7 +335,7 @@ jobs:
path: ~/.cache/babeldoc
key: test-1-babeldoc-assets-${{ hashFiles('babeldoctemp1234567/babeldoc/assets/embedding_assets_metadata.py') }}
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup uv with Python ${{ env.WIN_EXE_PYTHON_VERSION }}
uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5.3.1
Expand Down Expand Up @@ -437,7 +437,7 @@ jobs:
runs-on: windows-latest
steps:
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Download build artifact
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -515,7 +515,7 @@ jobs:
outputs:
tag_name: ${{ steps.release-drafter.outputs.tag_name }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
persist-credentials: true
fetch-depth: 2
Expand All @@ -538,7 +538,7 @@ jobs:
needs.release-draft.result == 'success'
steps:
- name: 检出代码
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Download build artifact
uses: actions/download-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- ubuntu-24.04-arm
steps:
- name: checkout babeldoc metadata
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: funstory-ai/BabelDOC
path: babeldoctemp1234567
Expand All @@ -33,7 +33,7 @@ jobs:
with:
path: ~/.cache/babeldoc
key: test-1-babeldoc-assets-${{ hashFiles('babeldoctemp1234567/babeldoc/assets/embedding_assets_metadata.py') }}
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup uv with Python ${{ matrix.python-version }}
uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5.3.1
with:
Expand Down