Remove ignored UTF8 setting in diagMode() #191
Workflow file for this run
This file contains 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
# GitHub Actions workflow for govulncheck. | |
# This file is licensed under MIT License. | |
# https://github.com/fxamacker/cbor | |
name: govulncheck | |
# Revoke default permissions and grant what's needed in each job. | |
permissions: {} | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- '**' | |
- '!**.md' | |
push: | |
paths: | |
- '**' | |
- '!**.md' | |
branches: | |
- 'main' | |
- 'master' | |
- 'release*' | |
- 'feature/stream-mode' | |
tags: | |
- 'v*' | |
jobs: | |
Check: | |
runs-on: ubuntu-latest | |
permissions: | |
# Grant permission to read content. | |
contents: read | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20.x | |
check-latest: true | |
- name: Install latest from golang.org | |
run: go install golang.org/x/vuln/cmd/govulncheck@f69de671333b611ab6b6f21f8ff0ab53f6d96c61 # v1.0.0 | |
- name: Run govulncheck | |
run: govulncheck -show=traces ./... |