Skip to content

Commit e5efc0a

Browse files
authored
Update actions
1 parent 1465b9f commit e5efc0a

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
SETUPTOOLS_ENABLE_FEATURES: legacy-editable
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
submodules: true
2020

21-
- uses: actions/setup-python@v4
21+
- uses: actions/setup-python@v5
2222
with:
2323
python-version: '3.11'
2424
- name: Install dependencies
@@ -32,7 +32,7 @@ jobs:
3232
make html
3333
working-directory: ./docs
3434
- name: Deploy
35-
uses: peaceiris/actions-gh-pages@v3
35+
uses: peaceiris/actions-gh-pages@v4
3636
with:
3737
github_token: ${{ secrets.GITHUB_TOKEN }}
3838
publish_dir: ./docs/_build/html

.github/workflows/wheels.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
os: [windows-2019]
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
with:
2121
submodules: true
2222

23-
- uses: actions/setup-python@v4
23+
- uses: actions/setup-python@v5
2424
with:
2525
python-version: '3.11'
2626

@@ -42,8 +42,9 @@ jobs:
4242
with:
4343
output-dir: dist
4444

45-
- uses: actions/upload-artifact@v3
45+
- uses: actions/upload-artifact@v4
4646
with:
47+
name: wheels-${{ matrix.os }}
4748
path: dist/*
4849

4950
upload_release:
@@ -53,9 +54,10 @@ jobs:
5354
if: startsWith(github.ref, 'refs/tags/')
5455

5556
steps:
56-
- uses: actions/download-artifact@v3
57+
- uses: actions/download-artifact@v4
5758
with:
58-
name: artifact
59+
pattern: wheels-*
60+
merge-multiple: true
5961
path: dist
6062

6163
- name: Release

0 commit comments

Comments
 (0)