chore: bump golang from 1a5326b
to dba79eb
in /build/tooling
#1295
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: 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@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1 | |
with: | |
egress-policy: audit | |
- name: Set up Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
go-version: "1.22" | |
check-latest: true | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v3.5.2 | |
- name: license-lint | |
run: | | |
export GOPATH="$HOME/go" | |
PATH="$GOPATH/bin:$PATH" | |
./third_party/k8s.io/kubernetes/hack/verify-licenses.sh |