Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Report formatting #233

Open
2 of 3 tasks
NickLarsenNZ opened this issue Jul 4, 2023 · 0 comments
Open
2 of 3 tasks

Report formatting #233

NickLarsenNZ opened this issue Jul 4, 2023 · 0 comments
Labels
bug Something isn't working

Comments

@NickLarsenNZ
Copy link

NickLarsenNZ commented Jul 4, 2023

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

@NickLarsenNZ NickLarsenNZ added the bug Something isn't working label Jul 4, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Development

No branches or pull requests

1 participant