Skip to content

feat(deps): bump golang.org/x/sys from 0.3.0 to 0.9.0 #58

feat(deps): bump golang.org/x/sys from 0.3.0 to 0.9.0

feat(deps): bump golang.org/x/sys from 0.3.0 to 0.9.0 #58

Workflow file for this run

name: License
on:
push:
branches:
- main
- release-*
pull_request: {}
workflow_dispatch: {}
jobs:
license-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- name: Check license
run: |
gem install license_finder
license_finder --decisions_file .license/dependency_decisions.yml
- uses: actions/setup-go@v3
with:
go-version: 1.17
- name: Check license header
run: |
make lint-license && git add apis pkg cmd || exit 1
git diff --cached --exit-code || (echo 'Please run "make lint-license" to verify license header' && exit 1);