feat: add cloud service host detection and default port handling in D… #172
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: Security Audit | |
| on: | |
| push: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| permissions: | |
| checks: write | |
| contents: read | |
| issues: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Audit check | |
| working-directory: nodejs | |
| run: npx audit-ci --moderate --allowlist GHSA-qm9p-f9j5-w83w | |
| - name: License check | |
| working-directory: nodejs | |
| run: | | |
| npx license-checker-rseidelsohn \ | |
| --onlyAllow "MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;MPL-2.0;CC-BY-4.0;0BSD" |