Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/upload-artifact from 3 to 4 #427

Merged
Merged
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
7 changes: 4 additions & 3 deletions .github/workflows/build-test-riscv64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ jobs:
'

- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: packages
name: packages-${{ matrix.os }}-${{ matrix.python.major-dot-minor }}
path: ./dist
if-no-files-found: error
upload:
Expand All @@ -90,7 +90,8 @@ jobs:
if: env.RELEASE == 'true'
uses: actions/download-artifact@v3
with:
name: packages
merge-multiple: true
pattern: packages-*
path: ./dist

- name: Configure AWS credentials
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ jobs:
pipx run --spec='cibuildwheel==2.16.2' cibuildwheel --output-dir dist 2>&1

- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: packages
name: packages-${{ matrix.os.name }}-${{ matrix.python.major-dot-minor }}-${{ matrix.arch.name }}
path: ./dist

build-sdist:
Expand Down Expand Up @@ -193,9 +193,9 @@ jobs:
python -m build --sdist --outdir dist .

- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: packages
name: packages-sdist-${{ matrix.os.name }}-${{ matrix.python.major-dot-minor }}-${{ matrix.arch.name }}
path: ./dist

check:
Expand Down Expand Up @@ -284,7 +284,8 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: packages
merge-multiple: true
pattern: packages-*
path: ./dist

- name: Publish distribution to PyPI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc-html-pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
pdfOptions: '{"margin": {"top": "1cm", "left": "1cm", "right": "1cm", "bottom": "1cm"}}'

- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Proof-of-Space-Document
path: ./documents/proof_of_space.pdf
Loading