File tree Expand file tree Collapse file tree 5 files changed +41
-27
lines changed Expand file tree Collapse file tree 5 files changed +41
-27
lines changed Original file line number Diff line number Diff line change 9
9
10
10
strategy :
11
11
matrix :
12
- node-version : [14.x ]
12
+ node-version : [18 ]
13
13
14
14
steps :
15
- - uses : actions/checkout@v1
15
+ - uses : actions/checkout@v4
16
16
- name : Use Node.js ${{ matrix.node-version }}
17
- uses : actions/setup-node@v1
17
+ uses : actions/setup-node@v4
18
18
with :
19
19
node-version : ${{ matrix.node-version }}
20
20
- name : npm install, build
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ jobs:
11
11
12
12
strategy :
13
13
matrix :
14
- node-version : [14.x ]
14
+ node-version : [18 ]
15
15
16
16
steps :
17
- - uses : actions/checkout@v1
17
+ - uses : actions/checkout@v4
18
18
- name : Use Node.js ${{ matrix.node-version }}
19
- uses : actions/setup-node@v1
19
+ uses : actions/setup-node@v4
20
20
with :
21
21
node-version : ${{ matrix.node-version }}
22
22
- name : Build and publish on VSCode Marketplace
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ 1.0.5] - 2025-03-13
4
+ ### Fixed
5
+ - Refresh List of Supported Products.
6
+
3
7
## [ 1.0.4] - 2022-08-04
4
8
### Fixed
5
9
- Changelog format.
Original file line number Diff line number Diff line change 4
4
"displayName" : " Content Navigator" ,
5
5
"description" : " Content Navigator helps security content authors to create content for https://github.com/ComplianceAsCode/content" ,
6
6
"icon" : " icon.png" ,
7
- "version" : " 1.0.4 " ,
7
+ "version" : " 1.0.5 " ,
8
8
"license" : " BSD-3-Clause" ,
9
9
"engines" : {
10
10
"vscode" : " ^1.59.0"
476
476
"type" : " string" ,
477
477
"default" : " fedora" ,
478
478
"enum" : [
479
+ " al2023" ,
479
480
" alinux2" ,
480
481
" alinux3" ,
482
+ " almalinux9" ,
483
+ " anolis23" ,
484
+ " anolis8" ,
481
485
" chromium" ,
482
- " debian9" ,
483
- " debian10" ,
484
486
" debian11" ,
487
+ " debian12" ,
485
488
" eks" ,
489
+ " example" ,
486
490
" fedora" ,
487
491
" firefox" ,
488
- " fuse6" ,
489
- " jre" ,
490
- " macos1015" ,
492
+ " kylinserver10" ,
491
493
" ocp4" ,
492
494
" ol7" ,
493
495
" ol8" ,
494
496
" ol9" ,
497
+ " ol10" ,
498
+ " openembedded" ,
499
+ " openeuler2203" ,
495
500
" opensuse" ,
496
501
" rhcos4" ,
497
- " rhel7" ,
498
502
" rhel8" ,
499
503
" rhel9" ,
500
- " rhosp10" ,
501
- " rhosp13" ,
504
+ " rhel10" ,
502
505
" rhv4" ,
503
506
" sle12" ,
504
507
" sle15" ,
508
+ " slmicro5" ,
509
+ " tencentos4" ,
505
510
" ubuntu1604" ,
506
511
" ubuntu1804" ,
507
512
" ubuntu2004" ,
508
- " uos20 " ,
509
- " vsel "
513
+ " ubuntu2204 " ,
514
+ " ubuntu2404 "
510
515
],
511
516
"description" : " Product to be Tested" ,
512
517
"scope" : " application"
Original file line number Diff line number Diff line change @@ -307,37 +307,42 @@ function getProduct() {
307
307
if ( config . get ( 'openBuiltContent.showListOfProducts' ) )
308
308
{
309
309
let products = [
310
+ "al2023" ,
310
311
"alinux2" ,
311
312
"alinux3" ,
313
+ "almalinux9" ,
314
+ "anolis23" ,
315
+ "anolis8" ,
312
316
"chromium" ,
313
- "debian9" ,
314
- "debian10" ,
315
317
"debian11" ,
318
+ "debian12" ,
316
319
"eks" ,
320
+ "example" ,
317
321
"fedora" ,
318
322
"firefox" ,
319
- "fuse6" ,
320
- "jre" ,
321
- "macos1015" ,
323
+ "kylinserver10" ,
322
324
"ocp4" ,
323
325
"ol7" ,
324
326
"ol8" ,
325
327
"ol9" ,
328
+ "ol10" ,
329
+ "openembedded" ,
330
+ "openeuler2203" ,
326
331
"opensuse" ,
327
332
"rhcos4" ,
328
- "rhel7" ,
329
333
"rhel8" ,
330
334
"rhel9" ,
331
- "rhosp10" ,
332
- "rhosp13" ,
335
+ "rhel10" ,
333
336
"rhv4" ,
334
337
"sle12" ,
335
338
"sle15" ,
339
+ "slmicro5" ,
340
+ "tencentos4" ,
336
341
"ubuntu1604" ,
337
342
"ubuntu1804" ,
338
343
"ubuntu2004" ,
339
- "uos20 " ,
340
- "vsel "
344
+ "ubuntu2204 " ,
345
+ "ubuntu2404 "
341
346
]
342
347
return vscode . window . showQuickPick ( products , { placeHolder : 'Select the product for the built content you would like to display' } ) ;
343
348
}
You can’t perform that action at this time.
0 commit comments