Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/build-debian-multiarch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:

# Upload the generated files under github actions assets section
- name: Upload dist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pygame-multiarch-${{ matrix.arch }}-dist
path: ~/artifacts/*.whl
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-emsdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

# Upload the generated files under github actions assets section
- name: Upload dist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pygame-wasm-dist
path: ./dist/*
Expand All @@ -70,7 +70,7 @@ jobs:
env:
CIBW_PLATFORM: pyodide

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: pyodide-wheels
path: wheelhouse/*.whl
4 changes: 2 additions & 2 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

# Uncomment when you want to manually verify the deps by downloading them
# - name: Upload Mac deps
# uses: actions/upload-artifact@v4
# uses: actions/upload-artifact@v5
# with:
# name: pygame-mac-deps-${{ matrix.macarch }}
# path: ${{ github.workspace }}/pygame_mac_deps_${{ matrix.macarch }}
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
- name: Build and test wheels
uses: pypa/cibuildwheel@v3.2.1

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: pygame-wheels-macos-${{ matrix.macarch }}
path: ./wheelhouse/*.whl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-manylinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:

# We upload the generated files under github actions assets
- name: Upload dist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pygame-wheels-manylinux-${{ matrix.arch }}
path: ./wheelhouse/*.whl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ubuntu-sdist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

# We upload the generated files under github actions assets
- name: Upload sdist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pygame-wheels-sdist
path: dist/*.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Build and test wheels
uses: pypa/cibuildwheel@v3.2.1

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: pygame-wheels-windows-${{ matrix.winarch }}
path: ./wheelhouse/*.whl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-ubuntu-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Upload coverage html
# want to continue only if the coverage generation was successful
if: ${{ steps.gen-coverage.conclusion == 'success' && !cancelled() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pygame-coverage-${{ matrix.os }}-${{ matrix.python }}
path: ./out
Expand Down
Loading