We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65e877c commit 5a28bd1Copy full SHA for 5a28bd1
.github/workflows/release-branch.yml
@@ -25,9 +25,15 @@ jobs:
25
uses: actions/[email protected]
26
with:
27
fetch-depth: 0 #required for tags
28
+
29
+ - name: Setup Go
30
+ uses: actions/setup-go@v2
31
+ with:
32
+ go-version: "1.17"
33
34
- name: Create the licence report file
35
run: |
- go-licenses csv cmd/manager/main.go --stderrthreshold 3 > third_party_licenses.txt
36
+ go get github.com/google/go-licenses && go-licenses csv cmd/manager/main.go --stderrthreshold 3 > third_party_licenses.txt
37
38
- name: Commit and push licence report file
39
uses: ./.github/actions/push-files
0 commit comments