Update NPM dev dependencies non-major #860
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 (pnpm) | |
on: | |
push: | |
paths: | |
- annimate_desktop/pnpm-lock.yaml | |
schedule: | |
- cron: "0 0 * * SAT" | |
workflow_dispatch: | |
env: | |
# renovate: datasource=npm versioning=semver-coerced depName=corepack | |
VERSION_COREPACK: 0.31.0 | |
jobs: | |
audit: | |
name: Audit | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: annimate_desktop | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Install a specific version of corepack to make sure we have the latest signing keys | |
- name: Install corepack | |
run: npm install --global corepack@${{ env.VERSION_COREPACK }} | |
- name: Enable corepack | |
run: corepack enable | |
- name: Run audit | |
run: pnpm audit --audit-level high |