This repository was archived by the owner on Oct 13, 2023. It is now read-only.
This repository was archived by the owner on Oct 13, 2023. It is now read-only.
Open
Description
Do the checklist before filing an issue:
- Is this related to the
actions-rs
Actions?
If you think it's a problem related to Github Actions in general, use GitHub Community forum instead: https://github.community - You've read the Contributing section about bugs reporting: https://github.com/actions-rs/.github/blob/master/CONTRIBUTING.md#reporting-bugs
- Is this something you can debug and fix? Send a pull request! Bug fixes and documentation fixes are welcome.
Description
Codeblocks in the security report show "
instead of "
Workflow code
name: Security audit
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
push:
branches: [main]
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
pull_request:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
audit:
runs-on: ubuntu-latest
permissions:
checks: write
contents: read
issues: write
pull-requests: read
steps:
- uses: actions/checkout@v3
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
chrono = { version = "0.4.24", features = ["serde"] } # triggers a security warning (at the time of writing)
Action output
The code blocks look like this:
Expected behavior
The code blocks should look like:
chrono = { version = "0.4", default-features = false, features = ["serde"] }