Skip to content

Commit 16d9c0a

Browse files
author
Diptorup Deb
authored
Merge pull request #1207 from IntelPython/fix/addlicense_workflow
Fixes the failing addlicense workflow.
2 parents 1627149 + 6c897b2 commit 16d9c0a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/license.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-go@v2
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-go@v3
1515
with:
16-
go-version: '1.16'
16+
go-version: '1.18'
1717
- name: Install addlicense
1818
run: |
1919
export PATH=${PATH}:`go env GOPATH`/bin
20-
go get -v -u github.com/google/addlicense
20+
go install github.com/google/addlicense@latest
2121
- name: Check license
2222
run: |
2323
export PATH=${PATH}:`go env GOPATH`/bin

0 commit comments

Comments
 (0)