Update changelog file #168
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
# SPDX-License-Identifier: MIT | |
name: licensed | |
on: | |
push: | |
branches: | |
- main | |
- feature/** | |
paths: | |
- .github/workflows/licensed.yml | |
- .licensed.yml | |
- .licenses/** | |
- go.mod | |
- go.sum | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
licensed: | |
name: Check licenses | |
permissions: {} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ruby | |
- name: Setup Licensed | |
uses: github/setup-licensed@v1 | |
with: | |
github_token: '${{ secrets.GITHUB_TOKEN }}' | |
version: '4.x' | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: './go.mod' | |
- name: Download dependencies | |
run: | | |
go mod download -x | |
- name: Check licensed status | |
run: | | |
licensed status |