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

chore(deps): update actions/upload-artifact action to v4 #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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/aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
libticky.so \
libticky.a
- name: Upload Ticky build artifacts to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: aarch64-ticky.gnu+linux
path: ./target/aarch64-unknown-linux-gnu/release/aarch64-ticky.gnu+linux.tar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/aur.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
chmod 400 /root/.ssh/aur
ssh-keyscan -H aur.archlinux.org >> /root/.ssh/known_hosts
- name: Upload Ticky Pacman package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: x86_64-ticky.pacman
path: ticky-*-x86_64.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
command: deb
args: --separate-debug-symbols -- --target x86_64-unknown-linux-gnu
- name: Upload Ticky build artifact to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: x86_64-ticky.deb.gnu+linux
path: ./target/debian/ticky_*_amd64.deb
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mac-universal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,19 @@ jobs:
libticky.dylib \
libticky.a
- name: Upload Ticky AMD64 build artifacts to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: x86_64-ticky.osx
path: ./target/x86_64-apple-darwin/release/x86_64-ticky.osx.tar
if-no-files-found: error
- name: Upload Ticky ARM64 build artifacts to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: aarch64-ticky.osx
path: ./target/aarch64-apple-darwin/release/aarch64-ticky.osx.tar
if-no-files-found: error
- name: Upload Ticky Universal build artifacts to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: universal-ticky.osx
path: ./target/universal-ticky.osx.tar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
cargo generate-rpm
tree -a ./
- name: Upload Ticky package to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: x86_64-ticky.rpm.gnu+linux
path: "./ticky/target/generate-rpm/*.rpm"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
libticky.a \
libticky.dll.a
- name: Upload Ticky build artifacts to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: x86_64-ticky.win32
path: ./target/x86_64-pc-windows-gnu/release/x86_64-ticky.win32.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
libticky.so \
libticky.a
- name: Upload Ticky build artifacts to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: x86_64-ticky.gnu+linux
path: ./target/x86_64-unknown-linux-gnu/release/x86_64-ticky.gnu+linux.tar
Expand Down
Loading