Skip to content

build(deps): bump github.com/docker/docker from 25.0.5+incompatible to 25.0.6+incompatible #349

build(deps): bump github.com/docker/docker from 25.0.5+incompatible to 25.0.6+incompatible

build(deps): bump github.com/docker/docker from 25.0.5+incompatible to 25.0.6+incompatible #349

name: go-licenses-check
on:
pull_request:
branches:
- main
paths:
- .github/workflows/go-licenses-check.yaml
- go.mod
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
check-licenses:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Install go-licenses
run: |
go install github.com/google/[email protected]
- name: Run go-licenses check
run: go-licenses check ./... --ignore github.com/loft-sh
env:
GOPRIVATE: "github.com/loft-sh/*"