Add a state in cloud account config (#286) #1518
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Golicense | |
on: | |
pull_request: | |
branches: | |
- main | |
- release-* | |
- feature/* | |
push: | |
branches: | |
- main | |
- release-* | |
- feature/* | |
release: | |
types: [published] | |
jobs: | |
check-changes: | |
name: Check whether tests need to be run based on diff | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: antrea-io/has-changes@v2 | |
id: check_diff | |
with: | |
paths-ignore: docs/* ci/jenkins/* *.md | |
outputs: | |
has_changes: ${{ steps.check_diff.outputs.has_changes }} | |
golicense: | |
needs: check-changes | |
if: ${{ needs.check-changes.outputs.has_changes == 'yes' || github.event_name != 'pull_request' }} | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go using version from go.mod | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
- name: Cache licensing information for dependencies | |
uses: actions/cache@v3 | |
id: cache | |
env: | |
cache-name: cache-lichen-deps-licensing-info | |
with: | |
path: license-reports | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/go.sum', 'ci/golicense/**') }} | |
- run: make build-bin | |
- name: Run lichen | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
mkdir license-reports | |
./ci/golicense/run.sh ./bin ./license-reports | |
- name: Upload licensing information | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: licenses.deps | |
path: license-reports/ALL.deps.txt | |
retention-days: 90 # max value |