@@ -25,12 +25,12 @@ jobs:
2525 uses : actions/checkout@v4
2626
2727 - name : Setup Node.js
28- uses : actions/setup-node@v4
28+ uses : actions/setup-node@v6
2929 with :
3030 node-version : 20
3131
3232 - name : Setup Python
33- uses : actions/setup-python@v4
33+ uses : actions/setup-python@v6
3434 with :
3535 python-version : " 3.11"
3636
7272
7373 - name : Upload Artifact (macOS - dmg only)
7474 if : runner.os == 'macOS'
75- uses : actions/upload-artifact@v4
75+ uses : actions/upload-artifact@v6
7676 with :
7777 name : release-${{ matrix.os }}-${{ matrix.arch }}
7878 path : |
8181
8282 - name : Upload Artifact (Windows - exe only)
8383 if : runner.os == 'Windows'
84- uses : actions/upload-artifact@v4
84+ uses : actions/upload-artifact@v6
8585 with :
8686 name : release-${{ matrix.os }}-${{ matrix.arch }}
8787 path : |
@@ -97,19 +97,19 @@ jobs:
9797
9898 # Download all artifacts with correct names
9999 - name : Download mac-x64 artifact
100- uses : actions/download-artifact@v4
100+ uses : actions/download-artifact@v7
101101 with :
102102 name : release-macos-15-intel-x64
103103 path : temp-mac-x64
104104
105105 - name : Download mac-arm64 artifact
106- uses : actions/download-artifact@v4
106+ uses : actions/download-artifact@v7
107107 with :
108108 name : release-macos-latest-arm64
109109 path : temp-mac-arm64
110110
111111 - name : Download win-x64 artifact
112- uses : actions/download-artifact@v4
112+ uses : actions/download-artifact@v7
113113 with :
114114 name : release-windows-latest-x64
115115 path : temp-win-x64
0 commit comments