mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
5465aa0d51
* build: migrate to golang 1.23.x Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com> * fix: golangci-lint reported errors Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com> --------- Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
31 lines
723 B
YAML
31 lines
723 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@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
cache: false
|
|
go-version: 1.23.x
|
|
- name: Install go-licenses
|
|
run: go install github.com/google/go-licenses@latest
|
|
- name: Check for forbidden licenses
|
|
run: make check-licenses
|
|
- name: Check if licenses file is updated
|
|
run: make update-licenses
|