8000 Report formatting · Issue #233 · actions-rs/audit-check · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
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.
Report formatting #233
Open
Open
@NickLarsenNZ

Description

@NickLarsenNZ

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:

image

Expected behavior

The code blocks should look like:

chrono = { version = "0.4", default-features = false, features = ["serde"] }

Additional context

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0