Do the checklist before filing an issue:
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"] }
Additional context
Do the checklist before filing an issue:
actions-rsActions?If you think it's a problem related to Github Actions in general, use GitHub Community forum instead: https://github.community
Description
Codeblocks in the security report show
"instead of"Workflow code
Action output
The code blocks look like this:
Expected behavior
The code blocks should look like:
Additional context