Bump log from 0.4.19 to 0.4.20 #12
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: Check licenses | |
on: | |
pull_request: | |
jobs: | |
check-licenses: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3.3.0 | |
- uses: actions/setup-node@v3.7.0 | |
with: | |
node-version: '16.19.0' | |
registry-url: 'https://npm.pkg.github.com' | |
scope: '@paritytech' | |
- name: Check the licenses | |
run: | | |
shopt -s globstar | |
npx @paritytech/license-scanner@0.0.3 scan \ | |
--ensure-licenses Apache-2.0 \ | |
--ensure-licenses GPL-3.0-only \ | |
./**/*.rs | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |