Skip to content
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

[ITSEC-2280] Add Dependency Review and SBOM signing jobs, update CODEOWNERS #246

Merged
merged 2 commits into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
publish:
name: Publish to NPM
runs-on: ubuntu-latest
permissions:
attestations: write
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -58,6 +60,11 @@ jobs:
run: |
rm -rf dist && yarn build

- name: Generate SDK attestation
uses: actions/attest-build-provenance@v1
with:
subject-path: './dist'

- name: Publish package
uses: JS-DevTools/npm-publish@v1
with:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,16 @@ jobs:
uses: actions/checkout@v3
- name: Run check script
run: sh readmecheck.sh
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4
- name: Dependency Review
uses: actions/dependency-review-action@v4
with:
# Possible values: "critical", "high", "moderate", "low"
fail-on-severity: critical
publish:
name: Publish to NPM (dry run)
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.github @immutable/assets @immutable/traders @immutable/prodsec

/clients @immutable/assets
/abi @immutable/assets

Expand Down
Loading