Skip to content

Commit 687a7b4

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

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build-emsdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
9090
# Upload the generated files under github actions assets section
9191
- name: Upload dist
92-
uses: actions/upload-artifact@v3
92+
uses: actions/upload-artifact@v4
9393
with:
9494
name: pygame-wasm-dist
9595
path: ./dist/*

.github/workflows/build-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
6969
# Uncomment when you want to manually verify the deps by downloading them
7070
# - name: Upload Mac deps
71-
# uses: actions/upload-artifact@v3
71+
# uses: actions/upload-artifact@v4
7272
# with:
7373
# name: pygame-mac-deps-${{ matrix.macarch }}
7474
# path: ${{ github.workspace }}/pygame_mac_deps_${{ matrix.macarch }}
@@ -179,7 +179,7 @@ jobs:
179179
- name: Build and test wheels
180180
uses: pypa/cibuildwheel@v2.16.2
181181

182-
- uses: actions/upload-artifact@v3
182+
- uses: actions/upload-artifact@v4
183183
with:
184184
name: pygame-wheels-macos
185185
path: ./wheelhouse/*.whl

.github/workflows/build-manylinux.yml

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

123123
# We upload the generated files under github actions assets
124124
- name: Upload dist
125-
uses: actions/upload-artifact@v3
125+
uses: actions/upload-artifact@v4
126126
with:
127127
name: pygame-wheels-manylinux
128128
path: ./wheelhouse/*.whl

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
# We upload the generated files under github actions assets
8989
- name: Upload sdist
9090
if: matrix.os == 'ubuntu-20.04' # upload sdist only once
91-
uses: actions/upload-artifact@v3
91+
uses: actions/upload-artifact@v4
9292
with:
9393
name: pygame-wheels-sdist
9494
path: dist/*.tar.gz

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161
python -m pip --disable-pip-version-check install cibuildwheel==2.16.2
162162
python -m cibuildwheel --output-dir wheelhouse
163163
164-
- uses: actions/upload-artifact@v3
164+
- uses: actions/upload-artifact@v4
165165
with:
166166
name: pygame-wheels-windows
167167
path: ./wheelhouse/*.whl

0 commit comments

Comments
 (0)