Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
run: tox -e build -vvv

- name: Store build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: build
path: |
Expand All @@ -188,7 +188,7 @@ jobs:
SPHINX_GITHUB_CHANGELOG_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Store build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v7
with:
name: docs
path: |
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
with:
python-version: ${{ matrix.py }}
- name: Download build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v8
with:
name: build
path: dist
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
- name: Set up Python ${{ matrix.py }}
uses: actions/setup-python@v4
- name: Download build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v8
with:
name: build
path: dist
Expand All @@ -280,7 +280,7 @@ jobs:
- publish-package
steps:
- name: Download docs
uses: actions/download-artifact@v3
uses: actions/download-artifact@v8
with:
name: docs
path: ./docs/html
Expand Down
Loading