Skip to content

Commit 5c9205f

Browse files
Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 63c294b commit 5c9205f

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/build-debian-multiarch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
109109
# Upload the generated files under github actions assets section
110110
- name: Upload dist
111-
uses: actions/upload-artifact@v4
111+
uses: actions/upload-artifact@v5
112112
with:
113113
name: pygame-multiarch-${{ matrix.arch }}-dist
114114
path: ~/artifacts/*.whl

.github/workflows/build-emsdk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
# Upload the generated files under github actions assets section
5757
- name: Upload dist
58-
uses: actions/upload-artifact@v4
58+
uses: actions/upload-artifact@v5
5959
with:
6060
name: pygame-wasm-dist
6161
path: ./dist/*
@@ -70,7 +70,7 @@ jobs:
7070
env:
7171
CIBW_PLATFORM: pyodide
7272

73-
- uses: actions/upload-artifact@v4
73+
- uses: actions/upload-artifact@v5
7474
with:
7575
name: pyodide-wheels
7676
path: wheelhouse/*.whl

.github/workflows/build-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
5252
# Uncomment when you want to manually verify the deps by downloading them
5353
# - name: Upload Mac deps
54-
# uses: actions/upload-artifact@v4
54+
# uses: actions/upload-artifact@v5
5555
# with:
5656
# name: pygame-mac-deps-${{ matrix.macarch }}
5757
# path: ${{ github.workspace }}/pygame_mac_deps_${{ matrix.macarch }}
@@ -120,7 +120,7 @@ jobs:
120120
- name: Build and test wheels
121121
uses: pypa/cibuildwheel@v3.2.1
122122

123-
- uses: actions/upload-artifact@v4
123+
- uses: actions/upload-artifact@v5
124124
with:
125125
name: pygame-wheels-macos-${{ matrix.macarch }}
126126
path: ./wheelhouse/*.whl

.github/workflows/build-manylinux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878

7979
# We upload the generated files under github actions assets
8080
- name: Upload dist
81-
uses: actions/upload-artifact@v4
81+
uses: actions/upload-artifact@v5
8282
with:
8383
name: pygame-wheels-manylinux-${{ matrix.arch }}
8484
path: ./wheelhouse/*.whl

.github/workflows/build-ubuntu-sdist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969

7070
# We upload the generated files under github actions assets
7171
- name: Upload sdist
72-
uses: actions/upload-artifact@v4
72+
uses: actions/upload-artifact@v5
7373
with:
7474
name: pygame-wheels-sdist
7575
path: dist/*.tar.gz

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Build and test wheels
4646
uses: pypa/cibuildwheel@v3.2.1
4747

48-
- uses: actions/upload-artifact@v4
48+
- uses: actions/upload-artifact@v5
4949
with:
5050
name: pygame-wheels-windows-${{ matrix.winarch }}
5151
path: ./wheelhouse/*.whl

.github/workflows/run-ubuntu-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
- name: Upload coverage html
125125
# want to continue only if the coverage generation was successful
126126
if: ${{ steps.gen-coverage.conclusion == 'success' && !cancelled() }}
127-
uses: actions/upload-artifact@v4
127+
uses: actions/upload-artifact@v5
128128
with:
129129
name: pygame-coverage-${{ matrix.os }}-${{ matrix.python }}
130130
path: ./out

0 commit comments

Comments
 (0)