Skip to content

Commit

Permalink
ci: update version of upload/download-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
jlwalke2 committed Oct 2, 2024
1 parent ca6605c commit 9b5e4c1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
run: sphinx-build -Ean -b html -j auto -D todo_include_todos=0 ./docs ./docs/_build/html

- name: Archive artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: html-docs
path: ./docs/_build/html
Expand Down Expand Up @@ -159,13 +159,13 @@ jobs:
- name: Archive distribution artifacts
# Archive distribution files for use by auto (or manual) PyPI upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pypi-dist
path: ./dist

- name: Archive changelog artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release_notes
path: release_notes.md
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
# Archive distribution files. Will upload in a downstream job.
- name: Archive distribution artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: conda-dist
path: .build
Expand All @@ -214,19 +214,19 @@ jobs:

steps:
- name: Download documentation
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: html-docs
path: ./html-docs

- name: Download release
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: pypi-dist
path: ./dist

- name: Download release notes
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: release_notes

Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
# Download release files
- name: Download release
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: conda-dist
path: ./dist
Expand Down

0 comments on commit 9b5e4c1

Please sign in to comment.