chore(deps): update actions/setup-go digest to 3041bf5 in .github/workflows/lint.yml #192
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: Lint and Generate | |
on: | |
pull_request: | |
push: | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Install Go | |
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5 | |
env: | |
GOBIN: /home/runner/go/bin | |
with: | |
go-version: v1.21.x | |
cache: true | |
- name: setup | |
run: | | |
go install github.com/projectdiscovery/yamldoc-go/cmd/docgen/dstdocgen@latest | |
- name: lint | |
run: go run mage.go lint | |
- name: markdown | |
run: go run mage.go markdown >> $GITHUB_STEP_SUMMARY |