fix: Replace bcrypt with Argon2id, upgrading legacy hashes on login #283
Workflow file for this run
This file contains hidden or 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 Check | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - '**/package-lock.json' | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| env: | |
| ALLOWED_LICENSES: | | |
| 0BSD | |
| Apache-2.0 | |
| BSD-2-Clause | |
| BSD-3-Clause | |
| BlueOak-1.0.0 | |
| BSL-1.0 | |
| CC0-1.0 | |
| ISC | |
| MIT | |
| Python-2.0 | |
| Unlicense | |
| strategy: | |
| matrix: | |
| directory: | |
| - . | |
| - client | |
| - db | |
| - migrator | |
| - nodejs-instrumentation | |
| - server | |
| - types | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: npm | |
| cache-dependency-path: '**/package-lock.json' | |
| - name: Format license list | |
| run: echo "ALLOWED_LICENSES=$(echo "$ALLOWED_LICENSES" | tr '\n' ';' | sed 's/;$//')" >> "$GITHUB_ENV" | |
| - name: Install dependencies | |
| working-directory: ${{ matrix.directory }} | |
| run: npm ci --omit=dev --ignore-scripts | |
| - name: Check licenses | |
| working-directory: ${{ matrix.directory }} | |
| run: npx --yes license-checker@25.0.1 --production --excludePrivatePackages --onlyAllow "$ALLOWED_LICENSES" |