chore(main): release 1.10.6 #2750
Workflow file for this run
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: License | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
license-finder: | |
name: License Finder | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up License Finder | |
run: sudo gem install license_finder | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Check licenses | |
run: license_finder --decisions-file=license-finder-decisions.yml | |
licensed: | |
name: Licensed | |
runs-on: ubuntu-latest | |
steps: | |
# setup ruby environment before running jonabc/setup-licensed | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ruby | |
- name: Setup Licensed | |
uses: jonabc/setup-licensed@d6b3a6f7058c2b40c06d205e13e15c2418977566 # renovate: tag=v1.1.4 | |
with: | |
version: "4.x" | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Check licenses | |
run: | | |
licensed cache | |
licensed status | |
licensed notices |