@@ -115,7 +115,7 @@ jobs:
115115 run : cargo build --release -p omni-terminal --target ${{ matrix.target }}
116116 - name : Upload macOS binary
117117 if : startsWith(matrix.target, 'x86_64-apple-darwin') || startsWith(matrix.target, 'aarch64-apple-darwin')
118- uses : actions/upload-artifact@v4
118+ uses : actions/upload-artifact@v7
119119 with :
120120 name : macos-binary-${{ matrix.target }}
121121 path : target/${{ matrix.target }}/release/omni-terminal
@@ -142,7 +142,7 @@ jobs:
142142 cp omni-terminal-x86_64-unknown-linux-gnu.tar.gz dist/
143143 - name : Upload Linux artifacts
144144 if : matrix.target == 'x86_64-unknown-linux-gnu'
145- uses : actions/upload-artifact@v4
145+ uses : actions/upload-artifact@v7
146146 with :
147147 name : linux-x86_64
148148 path : dist/*
@@ -189,7 +189,7 @@ jobs:
189189 mv omni-terminal-aarch64-unknown-linux-gnu.tar.gz ../../../
190190 - name : Upload Linux aarch64 artifact
191191 if : matrix.target == 'aarch64-unknown-linux-gnu'
192- uses : actions/upload-artifact@v4
192+ uses : actions/upload-artifact@v7
193193 with :
194194 name : linux-aarch64
195195 path : omni-terminal-aarch64-unknown-linux-gnu.tar.gz
@@ -212,7 +212,7 @@ jobs:
212212 # run: signtool sign /fd SHA256 /f certificate.pfx target/wix/*.msi
213213 - name : Upload Windows artifact
214214 if : matrix.target == 'x86_64-pc-windows-msvc'
215- uses : actions/upload-artifact@v4
215+ uses : actions/upload-artifact@v7
216216 with :
217217 name : windows-x86_64
218218 path : target/wix/*.msi
@@ -226,12 +226,12 @@ jobs:
226226 steps :
227227 - uses : actions/checkout@v4
228228 - name : Download macOS x86_64 binary
229- uses : actions/download-artifact@v4
229+ uses : actions/download-artifact@v8
230230 with :
231231 name : macos-binary-x86_64-apple-darwin
232232 path : macos-x86_64
233233 - name : Download macOS aarch64 binary
234- uses : actions/download-artifact@v4
234+ uses : actions/download-artifact@v8
235235 with :
236236 name : macos-binary-aarch64-apple-darwin
237237 path : macos-aarch64
@@ -284,7 +284,7 @@ jobs:
284284 - name : Package tarball
285285 run : tar -czvf omni-terminal-macos-universal.tar.gz omni-terminal
286286 - name : Upload macOS artifacts
287- uses : actions/upload-artifact@v4
287+ uses : actions/upload-artifact@v7
288288 with :
289289 name : macos-universal
290290 path : |
@@ -305,7 +305,7 @@ jobs:
305305 VERSION=$(grep -m1 '^version' Cargo.toml | sed 's/.*"\(.*\)".*/\1/')
306306 echo "version=$VERSION" >> $GITHUB_OUTPUT
307307 - name : Download all artifacts
308- uses : actions/download-artifact@v4
308+ uses : actions/download-artifact@v8
309309 with :
310310 path : artifacts
311311 - name : List artifacts
0 commit comments