mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
33a431ef43
* ci: Update go version to 1.19 Signed-off-by: Nicol Draghici <idraghic@cisco.com> * ci: Fix lint issues Signed-off-by: Nicol Draghici <idraghic@cisco.com> * ci: Added needprivileges to lint, made needprivileges pass lint Signed-off-by: Catalin Hofnar <catalin.hofnar@gmail.com> Signed-off-by: Nicol Draghici <idraghic@cisco.com> Signed-off-by: Nicol Draghici <idraghic@cisco.com> Signed-off-by: Catalin Hofnar <catalin.hofnar@gmail.com> Co-authored-by: Catalin Hofnar <catalin.hofnar@gmail.com>
28 lines
618 B
YAML
28 lines
618 B
YAML
name: "Software License Check"
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'go.mod'
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
paths:
|
|
- 'go.mod'
|
|
# The branches below must be a subset of the branches above
|
|
branches: [main]
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
license-check:
|
|
runs-on: ubuntu-latest
|
|
name: License Check
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.19.x
|
|
- name: Install go-licenses
|
|
run: go install github.com/google/go-licenses@latest
|
|
- name: Check for forbidden licenses
|
|
run: make check-licenses
|