Skip to content
Open
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
8 changes: 4 additions & 4 deletions scripts/fetch-github-driver-versions.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ function lookupSbomVersionsForTag(sbomCache, sbomStreamId, cacheKey) {
const SBOM_STREAM_PREFIX = {
"bluefin-stable": "stable",
"bluefin-latest": "latest",
"bluefin-lts": "lts",
"bluefin-lts-hwe": "lts-hwe",
"bluefin-lts": "stable",
"bluefin-lts-hwe": "stable-hwe",
"bluefin-dx-stable": "stable",
"bluefin-dx-latest": "latest",
"bluefin-dx-lts": "lts",
"bluefin-gdx-lts": "lts",
"bluefin-dx-lts": "stable",
"bluefin-gdx-lts": "stable",
"bluefin-gdx-latest": "latest",
"dakota-latest": "latest",
};
Expand Down
40 changes: 20 additions & 20 deletions scripts/fetch-github-sbom.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,45 +161,45 @@ const RAW_STREAM_SPECS = [
id: "bluefin-lts",
label: "Bluefin LTS",
org: "projectbluefin",
package: "bluefin",
package: "bluefin-lts",
releasesRepo: "projectbluefin/bluefin-lts",
streamPrefix: "lts",
streamPrefix: "stable",
keyRepo: "projectbluefin/bluefin-lts",
},
{
id: "bluefin-lts-hwe",
label: "Bluefin LTS HWE",
org: "projectbluefin",
package: "bluefin",
package: "bluefin-lts",
releasesRepo: "projectbluefin/bluefin-lts",
streamPrefix: "lts-hwe",
streamPrefix: "stable-hwe",
keyRepo: "projectbluefin/bluefin-lts",
},
{
id: "bluefin-lts-hwe-testing",
label: "Bluefin LTS HWE Testing",
org: "projectbluefin",
package: "bluefin",
package: "bluefin-lts",
releasesRepo: "projectbluefin/bluefin-lts",
streamPrefix: "lts-hwe-testing",
streamPrefix: "stable-hwe-testing",
keyRepo: "projectbluefin/bluefin-lts",
},
{
id: "bluefin-lts-hwe-testing-50",
label: "Bluefin LTS HWE Testing 50",
org: "projectbluefin",
package: "bluefin",
package: "bluefin-lts",
releasesRepo: "projectbluefin/bluefin-lts",
streamPrefix: "lts-hwe-testing-50",
streamPrefix: "stable-hwe-testing-50",
keyRepo: "projectbluefin/bluefin-lts",
},
{
id: "bluefin-lts-testing-50",
label: "Bluefin LTS Testing 50",
org: "projectbluefin",
package: "bluefin",
package: "bluefin-lts",
releasesRepo: "projectbluefin/bluefin-lts",
streamPrefix: "lts-testing-50",
streamPrefix: "stable-testing-50",
keyRepo: "projectbluefin/bluefin-lts",
},
{
Expand All @@ -224,45 +224,45 @@ const RAW_STREAM_SPECS = [
id: "bluefin-dx-lts",
label: "Bluefin DX LTS",
org: "projectbluefin",
package: "bluefin-dx",
package: "bluefin-lts",
releasesRepo: "projectbluefin/bluefin-lts",
streamPrefix: "lts",
streamPrefix: "stable",
keyRepo: "projectbluefin/bluefin-lts",
},
{
id: "bluefin-dx-lts-hwe-testing",
label: "Bluefin DX LTS HWE Testing",
org: "projectbluefin",
package: "bluefin-dx",
package: "bluefin-lts",
releasesRepo: "projectbluefin/bluefin-lts",
streamPrefix: "lts-hwe-testing",
streamPrefix: "stable-hwe-testing",
keyRepo: "projectbluefin/bluefin-lts",
},
{
id: "bluefin-dx-lts-hwe-testing-50",
label: "Bluefin DX LTS HWE Testing 50",
org: "projectbluefin",
package: "bluefin-dx",
package: "bluefin-lts",
releasesRepo: "projectbluefin/bluefin-lts",
streamPrefix: "lts-hwe-testing-50",
streamPrefix: "stable-hwe-testing-50",
keyRepo: "projectbluefin/bluefin-lts",
},
{
id: "bluefin-dx-lts-testing-50",
label: "Bluefin DX LTS Testing 50",
org: "projectbluefin",
package: "bluefin-dx",
package: "bluefin-lts",
releasesRepo: "projectbluefin/bluefin-lts",
streamPrefix: "lts-testing-50",
streamPrefix: "stable-testing-50",
keyRepo: "projectbluefin/bluefin-lts",
},
{
id: "bluefin-gdx-lts",
label: "Bluefin GDX LTS",
org: "projectbluefin",
package: "bluefin-gdx",
package: "bluefin-lts",
releasesRepo: "projectbluefin/bluefin-lts",
streamPrefix: "lts",
streamPrefix: "stable",
keyRepo: "projectbluefin/bluefin-lts",
},
{
Expand Down