Files
zot/.github/workflows/license.yaml
T
Ramkumar Chinchani 26f8201864 chore: update golang version to 1.25.7 (#3790)
* chore: update golang version to 1.25.7

Signed-off-by: Ramkumar Chinchani <rchincha.dev@gmail.com>

* ci: attempt to update to latest golang

Signed-off-by: Ramkumar Chinchani <rchincha.dev@gmail.com>

---------

Signed-off-by: Ramkumar Chinchani <rchincha.dev@gmail.com>
2026-02-12 21:21:52 +02:00

33 lines
752 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@v6
- uses: actions/setup-go@v6
with:
cache: false
check-latest: true
go-version: 1.25.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