Security check - Go Nancy #1
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: Security check - Go Nancy | ||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- ${{ github.event.repository.default_branch }} | ||
Check failure on line 8 in .github/workflows/nancy.yml GitHub Actions / Security check - Go NancyInvalid workflow file
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
- name: Set up Go 1.x in order to write go.list file | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: ^1.13 | ||
- name: WriteGoList | ||
run: go list -json -m all > go.list | ||
- name: Nancy | ||
uses: sonatype-nexus-community/nancy-github-action@main | ||
continue-on-error: true |