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

Add Dependabot, Update Dependencies and Workflows #1440

Merged
merged 25 commits into from
Mar 20, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
ci: fix build
  • Loading branch information
tiann committed Mar 19, 2024
commit 536dc35c5113d8eecc248574efe15e195f60db67
3 changes: 2 additions & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
@@ -29,7 +29,8 @@ jobs:

- name: Install cross
run: |
cargo install cross --locked
# cargo install cross --locked
cargo install cross --git https://github.com/cross-rs/cross

- name: Run clippy
run: |
4 changes: 3 additions & 1 deletion .github/workflows/ksud.yml
Original file line number Diff line number Diff line change
@@ -40,7 +40,9 @@ jobs:
cache-targets: false

- name: Install cross
run: cargo install cross --locked
run: |
# cargo install cross --locked
cargo install cross --git https://github.com/cross-rs/cross

- name: Build ksud
run: cross build --target ${{ inputs.target }} --release --manifest-path ./userspace/ksud/Cargo.toml
Loading