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

Update actions/upload-artifact action to v4.4.2 #126

Merged
merged 1 commit into from
Oct 9, 2024
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/test_macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
mkdir osx_artifacts
mv osx/Kivy.dmg osx_artifacts/${{ matrix.runs_on }}-Kivy.dmg
- name: Upload dmg as artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4.4.2
with:
name: KivySDKPackager
path: osx_artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows_angle_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: |
. .\ci\windows_ci.ps1
Build-angle
- uses: actions/upload-artifact@v4.1.7
- uses: actions/upload-artifact@v4.4.2
with:
name: angle_dlls
path: angle_dlls
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
. .\ci\windows_ci.ps1
Create-Packages
- name: Upload wheels as artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4.4.2
with:
name: angle_wheels
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_glew_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
. .\ci\windows_ci.ps1
Create-Packages
- name: Upload wheels as artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4.4.2
with:
name: glew_wheels
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_gstreamer_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
. .\ci\windows_ci.ps1
Create-Packages
- name: Upload wheels as artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4.4.2
with:
name: gstreamer_wheels
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_sdl2_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
. .\ci\windows_ci.ps1
Create-Packages
- name: Upload wheels as artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4.4.2
with:
name: sdl2_wheels
path: dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows_sdl3_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Build SDL3 for arch ${{ matrix.arch }}
run: |
./win/build_sdl3.ps1
- uses: actions/upload-artifact@v4.1.7
- uses: actions/upload-artifact@v4.4.2
with:
name: sdl3_build_${{ matrix.arch }}
path: kivy-dependencies/dist
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
. .\ci\windows_ci.ps1
Create-Packages
- name: Upload wheels as artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4.4.2
with:
name: sdl3_wheel_${{ matrix.arch }}_${{ matrix.python }}
path: dist
Expand Down
Loading