-
-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
59 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
10110 OUTOFSCOPE .*vendor.*\.js | ||
10110 OUTOFSCOPE .*graph-test.*\.js | ||
10062 OUTOFSCOPE .*_bom\..* | ||
10094 OUTOFSCOPE .*_bom\..* | ||
10099 OUTOFSCOPE .*vendor.*\.js | ||
10099 OUTOFSCOPE .*diagram-edit.*\.js | ||
10099 OUTOFSCOPE .*app.*\.js | ||
10110 OUTOFSCOPE .*vendor.*\.js | ||
10110 OUTOFSCOPE .*graph-test.*\.js | ||
10110 OUTOFSCOPE .*diagram-edit.*\.js | ||
10062 OUTOFSCOPE .*_bom\..* | ||
10094 OUTOFSCOPE .*_bom\..* | ||
10110 OUTOFSCOPE .*jquery\.min\.js | ||
10003 IGNORE Javascript libraries handled by dependabot | ||
10055 IGNORE CSP: script-src unsafe-eval | ||
10063 IGNORE Permissions Policy Header Not Set | ||
40039 IGNORE Web Cache Deception |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Windows release | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
# for security reasons the github actions are pinned to specific release versions | ||
jobs: | ||
|
||
desktop_windows: | ||
name: Windows installer | ||
runs-on: windows-latest | ||
defaults: | ||
run: | ||
working-directory: td.vue | ||
|
||
steps: | ||
- name: Check out | ||
uses: actions/checkout@v4.2.0 | ||
|
||
- name: Use node LTS 20.14.0 | ||
uses: actions/setup-node@v4.1.0 | ||
with: | ||
node-version: '20.14.0' | ||
|
||
- name: Cache NPM dir | ||
uses: actions/cache@v4.1.1 | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node- | ||
${{ runner.os }}- | ||
- name: Install clean packages | ||
run: npm clean-install | ||
|
||
- name: Build Windows executable | ||
# code signing done later using Extended Verification (EV) with a hardware key | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: npm run build:desktop -- --windows --publish always | ||
|
||
- name: Save SBOM artifact | ||
uses: actions/upload-artifact@v4.4.0 | ||
with: | ||
name: sboms-desktop-windows-site | ||
path: './td.vue/dist-desktop/bundled/.sbom/*' | ||
include-hidden-files: true | ||
if-no-files-found: error |
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