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

Added 3rd Party Software Licenses Page #8748

Merged
merged 26 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
80a2ff7
Create generate-sbom.yml
tellmeY18 Oct 8, 2024
b8c6c43
added LicensePage
tellmeY18 Oct 8, 2024
75b0ac5
fixed be
tellmeY18 Oct 8, 2024
a340b44
applied UI changes
tellmeY18 Oct 9, 2024
e3f8a31
Merge branch 'ohcnetwork:develop' into develop
tellmeY18 Oct 9, 2024
1abaf26
Added 3rd Party link to Homepage and minor UI changes
tellmeY18 Oct 9, 2024
4822f8a
Merge branch 'ohcnetwork:develop' into develop
tellmeY18 Oct 9, 2024
4f32cd6
Merge branch 'develop' into develop
khavinshankar Oct 10, 2024
bc1a589
migrated to Licenses Directory and transfered licenseUrl to json
tellmeY18 Oct 10, 2024
4a53047
Removed Axios
tellmeY18 Oct 10, 2024
4b9e72b
Merge branch 'develop' into develop
tellmeY18 Oct 10, 2024
4ce5ec6
Merge branch 'develop' into tellmeY18/develop
rithviknishad Oct 14, 2024
b5fd14f
improve code quality
rithviknishad Oct 14, 2024
d870984
adds missing locale
rithviknishad Oct 14, 2024
064844c
Merge branch 'develop' into develop
tellmeY18 Oct 15, 2024
48fc6f0
mobile friendly view
tellmeY18 Oct 15, 2024
77ea4d4
info button
tellmeY18 Oct 15, 2024
d539d63
updated auth
tellmeY18 Oct 15, 2024
c229c3d
added break-words to fix text overflow
tellmeY18 Oct 16, 2024
48ab921
Merge branch 'develop' into develop
tellmeY18 Oct 16, 2024
c718359
updated locale
tellmeY18 Oct 16, 2024
2646ea3
Merge pull request #1 from tellmeY18/resolve-conflict
tellmeY18 Oct 16, 2024
e91ef5b
updated locale
tellmeY18 Oct 16, 2024
02ddd14
fix locale sort
rithviknishad Oct 16, 2024
d239847
Merge branch 'develop' into develop
nihal467 Oct 18, 2024
788a239
Merge branch 'develop' into develop
nihal467 Oct 18, 2024
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
32 changes: 32 additions & 0 deletions .github/workflows/generate-sbom.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Generate SBOM using CycloneDX

on:
workflow_dispatch:

jobs:
generate-sbom:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'

- name: Install dependencies
run: npm ci

- name: Install CycloneDX NPM tool
run: npm install -g @cyclonedx/cyclonedx-npm

- name: Generate SBOM
run: cyclonedx-npm --output-file sbom.json

- name: Upload SBOM
uses: actions/upload-artifact@v3
with:
name: sbom
path: sbom.json
if-no-files-found: error
Loading
Loading