Skip to content

Commit 3fb3c18

Browse files
authored
Merge pull request #81 from ggbecker/add-rhel10
Add rhel10
2 parents 2aa3902 + df411dd commit 3fb3c18

File tree

5 files changed

+41
-27
lines changed

5 files changed

+41
-27
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [14.x]
12+
node-version: [18]
1313

1414
steps:
15-
- uses: actions/checkout@v1
15+
- uses: actions/checkout@v4
1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v1
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- name: npm install, build

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
node-version: [14.x]
14+
node-version: [18]
1515

1616
steps:
17-
- uses: actions/checkout@v1
17+
- uses: actions/checkout@v4
1818
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v1
19+
uses: actions/setup-node@v4
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222
- name: Build and publish on VSCode Marketplace

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [1.0.5] - 2025-03-13
4+
### Fixed
5+
- Refresh List of Supported Products.
6+
37
## [1.0.4] - 2022-08-04
48
### Fixed
59
- Changelog format.

package.json

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"displayName": "Content Navigator",
55
"description": "Content Navigator helps security content authors to create content for https://github.com/ComplianceAsCode/content",
66
"icon": "icon.png",
7-
"version": "1.0.4",
7+
"version": "1.0.5",
88
"license": "BSD-3-Clause",
99
"engines": {
1010
"vscode": "^1.59.0"
@@ -476,37 +476,42 @@
476476
"type": "string",
477477
"default": "fedora",
478478
"enum": [
479+
"al2023",
479480
"alinux2",
480481
"alinux3",
482+
"almalinux9",
483+
"anolis23",
484+
"anolis8",
481485
"chromium",
482-
"debian9",
483-
"debian10",
484486
"debian11",
487+
"debian12",
485488
"eks",
489+
"example",
486490
"fedora",
487491
"firefox",
488-
"fuse6",
489-
"jre",
490-
"macos1015",
492+
"kylinserver10",
491493
"ocp4",
492494
"ol7",
493495
"ol8",
494496
"ol9",
497+
"ol10",
498+
"openembedded",
499+
"openeuler2203",
495500
"opensuse",
496501
"rhcos4",
497-
"rhel7",
498502
"rhel8",
499503
"rhel9",
500-
"rhosp10",
501-
"rhosp13",
504+
"rhel10",
502505
"rhv4",
503506
"sle12",
504507
"sle15",
508+
"slmicro5",
509+
"tencentos4",
505510
"ubuntu1604",
506511
"ubuntu1804",
507512
"ubuntu2004",
508-
"uos20",
509-
"vsel"
513+
"ubuntu2204",
514+
"ubuntu2404"
510515
],
511516
"description": "Product to be Tested",
512517
"scope": "application"

src/content-navigator.ts

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -307,37 +307,42 @@ function getProduct() {
307307
if(config.get('openBuiltContent.showListOfProducts'))
308308
{
309309
let products = [
310+
"al2023",
310311
"alinux2",
311312
"alinux3",
313+
"almalinux9",
314+
"anolis23",
315+
"anolis8",
312316
"chromium",
313-
"debian9",
314-
"debian10",
315317
"debian11",
318+
"debian12",
316319
"eks",
320+
"example",
317321
"fedora",
318322
"firefox",
319-
"fuse6",
320-
"jre",
321-
"macos1015",
323+
"kylinserver10",
322324
"ocp4",
323325
"ol7",
324326
"ol8",
325327
"ol9",
328+
"ol10",
329+
"openembedded",
330+
"openeuler2203",
326331
"opensuse",
327332
"rhcos4",
328-
"rhel7",
329333
"rhel8",
330334
"rhel9",
331-
"rhosp10",
332-
"rhosp13",
335+
"rhel10",
333336
"rhv4",
334337
"sle12",
335338
"sle15",
339+
"slmicro5",
340+
"tencentos4",
336341
"ubuntu1604",
337342
"ubuntu1804",
338343
"ubuntu2004",
339-
"uos20",
340-
"vsel"
344+
"ubuntu2204",
345+
"ubuntu2404"
341346
]
342347
return vscode.window.showQuickPick(products, { placeHolder: 'Select the product for the built content you would like to display'});
343348
}

0 commit comments

Comments
 (0)