cargo icon indicating copy to clipboard operation
cargo copied to clipboard

📦 GitHub Action for Rust `cargo` command

Results 64 cargo issues
Sort by recently updated
recently updated
newest added

Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.2.4 to 1.2.6. **This update includes a security fix.** Vulnerabilities fixed Sourced from The GitHub Security Advisory Database. Environment Variable Injection in GitHub Actions Impact The @actions/core...

dependencies
security

Bumps [node-fetch](https://github.com/bitinn/node-fetch) from 2.6.0 to 2.6.1. **This update includes a security fix.** Vulnerabilities fixed Sourced from The GitHub Security Advisory Database. The size option isn't honored after following a redirect...

dependencies
security

## Description ## Workflow code https://github.com/NPC-Studio/yy-boss/blob/master/.github/workflows/main.yml (this is just the quickstart action without Clippy) ## Action output ``` failed to get `yy-typings` as a dependency of package `yy-boss v0.1.1 (/home/runner/work/yy-boss/yy-boss)`...

bug

`rustfmt` messages usually starts with line similar to this: ``` Diff in /home/runner/some/random/path.rs at line 135: ``` We could probably add the problem matcher similar to [rust one](https://github.com/actions-rs/cargo/blob/master/.matchers/rust.json) to highlight...

It is usually PITA to determine the path where build artifacts were placed, because resulting path might vary based on the `debug`/`release` profile and compilation target name, ex: * `target/debug/`...

On all no_std supporting crates I typically need to test for no_std compatibility in CI. [This blog](https://blog.dbrgn.ch/2019/12/24/testing-for-no-std-compatibility/) has some useful advice on how this can be done. Is it possible...

Just saying, I'm completely unfamiliar with this codebase and to what this change might cause (regarding the code functionality), but this just follows along with [this github blog post](https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/). You...

Do the checklist before filing an issue: * [x] Is this related to the `actions-rs` Actions? If you think it's a problem related to Github Actions in general, use GitHub...

bug

Do the checklist before filing an issue: * [x] Is this related to the `actions-rs` Actions? If you think it's a problem related to Github Actions in general, use GitHub...

bug

How do I save the output of a cargo command to file in a Github action? Specifically, I want to do something like: `cargo build --message-format json > build.log` to...