Have made the region name optional on the getResource SDK method #265
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: Audit | |
on: | |
pull_request: | |
branches: | |
- main | |
- zowe-v?-lts | |
- next | |
paths: | |
- packages/** | |
schedule: | |
- cron: '0 10 * * *' | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js LTS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Check Vulnerabilities | |
run: npm audit --workspaces --production --audit-level=moderate |