-
Notifications
You must be signed in to change notification settings - Fork 0
PR for v0.1.2 #293
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
base: main
Are you sure you want to change the base?
PR for v0.1.2 #293
Changes from all commits
c1eb6e0
c5e225a
cd9a37f
5c61e7a
a7118bd
f15a347
0bf0d82
e793a48
536a0b7
450ff4f
b687ceb
44bf76e
7aabe1f
9727854
b3becd3
4910f45
79cdd59
dfda3dd
92c97ff
10d3aa0
45fb2c2
2d2570d
f9b033f
549e561
3b91fe9
07fddce
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 |
|---|---|---|
|
|
@@ -27,7 +27,7 @@ jobs: | |
| - run: npx lerna run build | ||
| # - run: npx lerna run test | ||
| - name: Upload build artifacts | ||
| uses: actions/upload-artifact@v6 | ||
| uses: actions/upload-artifact@v7 | ||
|
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. Use SHA-pinned action references for artifact actions. These Suggested change- - name: Upload build artifacts
- uses: actions/upload-artifact@v7
+ - name: Upload build artifacts
+ uses: actions/upload-artifact@<full-length-commit-sha>
- - name: Download build artifacts
- uses: actions/download-artifact@v8
+ - name: Download build artifacts
+ uses: actions/download-artifact@<full-length-commit-sha>
- - name: Download build artifacts
- uses: actions/download-artifact@v8
+ - name: Download build artifacts
+ uses: actions/download-artifact@<full-length-commit-sha>Also applies to: 49-49, 79-79 🧰 Tools🪛 zizmor (1.25.2)[error] 30-30: unpinned action reference (unpinned-uses): action is not pinned to a hash (required by blanket policy) (unpinned-uses) 🤖 Prompt for AI AgentsSource: Linters/SAST tools |
||
| with: | ||
| name: build-output | ||
| path: packages/ | ||
|
|
@@ -46,7 +46,7 @@ jobs: | |
| cache: 'npm' | ||
| registry-url: https://npm.pkg.github.com/ | ||
| - name: Download build artifacts | ||
| uses: actions/download-artifact@v7 | ||
| uses: actions/download-artifact@v8 | ||
| with: | ||
| name: build-output | ||
| path: packages/ | ||
|
|
@@ -76,7 +76,7 @@ jobs: | |
| cache: 'npm' | ||
| registry-url: https://registry.npmjs.org/ | ||
| - name: Download build artifacts | ||
| uses: actions/download-artifact@v7 | ||
| uses: actions/download-artifact@v8 | ||
| with: | ||
| name: build-output | ||
| path: packages/ | ||
|
|
||
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.
Pin GitHub Actions to immutable commit SHAs instead of mutable tags.
@v5tags are mutable and violate the repository’s unpinned-actions policy. Pin both actions to full commit SHAs to reduce supply-chain risk.Suggested change
🧰 Tools
🪛 zizmor (1.25.2)
[error] 28-28: unpinned action reference (unpinned-uses): action is not pinned to a hash (required by blanket policy)
(unpinned-uses)
[error] 33-33: unpinned action reference (unpinned-uses): action is not pinned to a hash (required by blanket policy)
(unpinned-uses)
🤖 Prompt for AI Agents
Source: Linters/SAST tools