Skip to content

Commit 2b81f10

Browse files
SilverRainZMiniMax
andcommitted
fix: upgrade actions/checkout to v6 and actions/setup-python to v6 for Node.js 24 support
Co-authored-by: MiniMax <models@minimax.io>
1 parent e9c8f79 commit 2b81f10

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,22 +54,22 @@ runs:
5454
using: "composite"
5555
steps:
5656
- name: Checkout
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v6
5858
if: ${{ inputs.checkout == 'true' && inputs.cache == 'true' }}
5959
with:
6060
fetch-depth: 0 # Required by sphinxnotes-incrbuild
6161
- name: Checkout
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v6
6363
if: ${{ inputs.checkout == 'true' && inputs.cache == 'false' }}
6464

6565
- name: Setup python
66-
uses: actions/setup-python@v5
66+
uses: actions/setup-python@v6
6767
if: ${{ inputs.cache == 'true' }}
6868
with:
6969
python-version: ${{ inputs.python_version }}
7070
cache: 'pip'
7171
- name: Setup python
72-
uses: actions/setup-python@v5
72+
uses: actions/setup-python@v6
7373
if: ${{ inputs.cache == 'false' }}
7474
with:
7575
python-version: ${{ inputs.python_version }}

0 commit comments

Comments
 (0)