-
Notifications
You must be signed in to change notification settings - Fork 0
Migrate to pnpm #29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate to pnpm #29
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -25,18 +25,22 @@ jobs: | |||||
| uses: actions/checkout@v4 | ||||||
| - name: Setup Pages | ||||||
| uses: actions/configure-pages@v3 | ||||||
| - name: Setup pnpm | ||||||
| uses: pnpm/action-setup@v4 | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 3rd party Github Actions should be pinned - medium severity
Suggested change
Reply
coderabbitai[bot] marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| with: | ||||||
| package_json_file: example-client/package.json | ||||||
| - name: Setup Node | ||||||
| uses: actions/setup-node@v4 | ||||||
| with: | ||||||
| node-version-file: ".node-version" | ||||||
| cache: npm | ||||||
| cache-dependency-path: example-client/package-lock.json | ||||||
| cache: pnpm | ||||||
| cache-dependency-path: example-client/pnpm-lock.yaml | ||||||
| - name: Generate | ||||||
| shell: bash | ||||||
| working-directory: example-client/ | ||||||
| run: | | ||||||
| npm ci | ||||||
| npm run generateDocs | ||||||
| pnpm install --frozen-lockfile | ||||||
| pnpm run generateDocs | ||||||
| - name: Upload artifact | ||||||
| uses: actions/upload-pages-artifact@v2 | ||||||
| with: | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| v18 | ||
| v22 |
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3rd party Github Actions should be pinned - medium severity
A third-party GitHub Action was imported, and is not pinned via a hash. This leaves your CI/CD at risk for potential supply chain attacks, if the affected GitHub Action is compromised.
Reply
@AikidoSec ignore: [REASON]to ignore this issue.More info