chore(deps): bump flatted from 3.4.1 to 3.4.2 in the npm_and_yarn group across 1 directory #42
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: Security Scan | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: "11 11 * * 3" # Every Wednesday at 20:11 JST (11:11 UTC) | |
| permissions: | |
| actions: read | |
| security-events: write | |
| contents: read | |
| jobs: | |
| security-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install latest npm | |
| run: npm install -g npm@latest | |
| - name: Setup Aikido Safe Chain | |
| run: curl -fsSL https://raw.githubusercontent.com/AikidoSec/safe-chain/main/install-scripts/install-safe-chain.sh | sh -s -- --ci | |
| - name: Install dependencies | |
| env: | |
| SAFE_CHAIN_MINIMUM_PACKAGE_AGE_HOURS: 96 | |
| run: npm ci | |
| - name: Test | |
| run: npm test | |
| osv-scan: | |
| uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v2.3.3 |