forked from open-policy-agent/gatekeeper
-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (40 loc) · 1.2 KB
/
license-lint.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# name: license-lint
# on:
# push:
# paths:
# - "go.mod"
# - "go.sum"
# - "vendor/**"
# - "third_party/k8s.io/kubernetes/hack/verify-licenses.sh"
# pull_request:
# paths:
# - "go.mod"
# - "go.sum"
# - "vendor/**"
# - "third_party/k8s.io/kubernetes/hack/verify-licenses.sh"
# permissions:
# contents: read
# jobs:
# license-lint:
# name: "license-lint"
# runs-on: ubuntu-22.04
# timeout-minutes: 5
# permissions:
# contents: read
# steps:
# - name: Harden Runner
# uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
# with:
# egress-policy: audit
# - name: Set up Go
# uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
# with:
# go-version: "1.22"
# check-latest: true
# - name: Check out code into the Go module directory
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v3.5.2
# - name: license-lint
# run: |
# export GOPATH="$HOME/go"
# PATH="$GOPATH/bin:$PATH"
# ./third_party/k8s.io/kubernetes/hack/verify-licenses.sh