opml: add helpers to determine the type of an Outline, and whether it… #14
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
--- | |
name: Vulnerabilities | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
pull_request: {} | |
jobs: | |
vulnerabilities: | |
runs-on: ubuntu-latest | |
steps: | |
- name: vulncheck | |
id: govulncheck | |
uses: golang/govulncheck-action@v1 | |
with: | |
# The setup-go action does not necessarily use the latest Go patch release. | |
# As such, this job may fail due to vulnerabilities present in previous | |
# patch releases (including the one used by the setup-go action). | |
# See https://github.com/actions/setup-go/issues/407 | |
go-version-file: go.mod |