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 #134

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 @@ -35,7 +35,7 @@ jobs:
libodo.so \
libodo.a
- name: Upload odo build artifacts to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: aarch64-odo.gnu+linux
path: ./target/aarch64-unknown-linux-gnu/release/aarch64-odo.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 odo Pacman package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: x86_64-odo.pacman
path: odo-*-x86_64.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
path-to-lcov: './lcov.info'

- name: Archive code coverage results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: cobertura.xml
2 changes: 1 addition & 1 deletion .github/workflows/deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
command: deb
args: --separate-debug-symbols -- --all-features --target x86_64-unknown-linux-gnu
- name: Upload odo build artifact to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: x86_64-odo.deb.gnu+linux
path: ./target/debian/odo_*_amd64.deb
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac-apple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
libodo.dylib \
libodo.a
- name: Upload odo build artifacts to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: aarch64-odo.osx
path: ./target/aarch64-apple-darwin/release/aarch64-odo.osx.tar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac-intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
libodo.dylib \
libodo.a
- name: Upload odo build artifacts to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: x86_64-odo.osx
path: ./target/x86_64-apple-darwin/release/x86_64-odo.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 @@ -45,7 +45,7 @@ jobs:
command: rpm
args: build -v
- name: Upload odo build artifact to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: x86_64-odo.rpm.gnu+linux
path: ./target/release/rpmbuild/RPMS/x86_64/odo-*.x86_64.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 @@ -33,7 +33,7 @@ jobs:
libodo.a `
libodo.dll.a
- name: Upload odo build artifacts to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: x86_64-odo.win32
path: ./target/x86_64-pc-windows-gnu/release/x86_64-odo.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 @@ -37,7 +37,7 @@ jobs:
libodo.so \
libodo.a
- name: Upload odo build artifacts to GitHub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: x86_64-odo.gnu+linux
path: ./target/x86_64-unknown-linux-gnu/release/x86_64-odo.gnu+linux.tar
Expand Down
Loading