Skip to content

Bump golang.org/x/net from 0.7.0 to 0.17.0 #78

Bump golang.org/x/net from 0.7.0 to 0.17.0

Bump golang.org/x/net from 0.7.0 to 0.17.0 #78

Workflow file for this run

name: license-check
on:
push:
branches:
- main
pull_request:
jobs:
addlicense-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17
- name: Run license check
run: |
go get -u github.com/google/addlicense
export PATH=$PATH:$(go env GOPATH)/bin
addlicense -f hack/LICENSE.go.txt -check $(find $PWD -type f -name '*.go' | grep -v "openmetadata-connector/auto-generated")