chore: release dfx-core v0.3.0 (#4476) #10302
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Audit | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| schedule: | |
| # * is a special character in YAML so you have to quote this string | |
| - cron: "0 14 * * *" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| # When getting Rust dependencies, retry on network error: | |
| CARGO_NET_RETRY: 10 | |
| # Use the local .curlrc | |
| CURL_HOME: . | |
| # Disable DFX telemetry | |
| DFX_TELEMETRY: 'off' | |
| # Use the stable toolchain for the audit | |
| RUSTUP_TOOLCHAIN: stable | |
| jobs: | |
| test: | |
| name: audit:required | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| issues: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions-rust-lang/audit@v1 | |
| with: | |
| # RUSTSEC-2026-0001 | |
| # TODO: remove this once the fix is backported to rkyv v0.7 | |
| # https://github.com/rkyv/rkyv/issues/644 | |
| # RUSTSEC-2024-0437 | |
| # Ok to ignore because it is only used in the monorepo, which forbids using the affected type. | |
| ignore: RUSTSEC-2026-0001,RUSTSEC-2024-0437 |