Skip to content

Commit 69fd0d9

Browse files
authored
Merge pull request #3664 from pygame-community/dependabot/github_actions/actions/upload-artifact-6
Bump actions/upload-artifact from 5 to 6
2 parents c445233 + 1a0b7b1 commit 69fd0d9

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@v5
111+
uses: actions/upload-artifact@v6
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@v5
58+
uses: actions/upload-artifact@v6
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@v5
73+
- uses: actions/upload-artifact@v6
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@v5
54+
# uses: actions/upload-artifact@v6
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/[email protected]
122122

123-
- uses: actions/upload-artifact@v5
123+
- uses: actions/upload-artifact@v6
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@v5
81+
uses: actions/upload-artifact@v6
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@v5
72+
uses: actions/upload-artifact@v6
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/[email protected]
4747

48-
- uses: actions/upload-artifact@v5
48+
- uses: actions/upload-artifact@v6
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
@@ -123,7 +123,7 @@ jobs:
123123
- name: Upload coverage html
124124
# want to continue only if the coverage generation was successful
125125
if: ${{ steps.gen-coverage.conclusion == 'success' && !cancelled() }}
126-
uses: actions/upload-artifact@v5
126+
uses: actions/upload-artifact@v6
127127
with:
128128
name: pygame-coverage-${{ matrix.os }}-${{ matrix.python }}
129129
path: ./out

0 commit comments

Comments
 (0)