build(deps): bump golang.org/x/net from 0.0.0-20210405180319-a5a99cb37ef4 to 0.23.0 in /functions/go/set-enforcement-action #1979
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: verify-docs | |
on: | |
pull_request: | |
branches: | |
- master | |
- '*/v[0-9]+.[0-9]+' | |
jobs: | |
verify-ci: | |
runs-on: ubuntu-latest | |
env: | |
GOPATH: /home/runner/work/kpt-functions-catalog/functions/go | |
GO111MODULE: on | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up python 3 | |
uses: actions/setup-python@v2 | |
- name: Install libs | |
run: | | |
pip install pyyaml | |
- name: Set up Go 1.19 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- name: Install mdrip | |
run: | | |
go install github.com/monopole/[email protected] | |
- name: Verify docs | |
run: | | |
make verify-docs |