Skip to content

Commit 093a9cf

Browse files
committed
vulnerability-data-spec-files -> vulnerability-index-spec-files
Signed-off-by: Weston Steimel <[email protected]>
1 parent 2d6eccd commit 093a9cf

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/generate.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
generate:
1414
permissions:
1515
contents: write
16-
name: "Generate legacy Anchore CVE 5 enriched records from vunerability data spec files"
16+
name: "Generate legacy Anchore CVE 5 enriched records from vunerability index spec files"
1717
runs-on: ubuntu-latest
1818
container:
1919
image: python:3.13-alpine
@@ -26,18 +26,18 @@ jobs:
2626
run: pip install check-jsonschema cpe git+https://github.com/anchore/security-cli
2727
- name: Checkout CVE 5 data
2828
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
29-
- name: Checkout Vulnerability Data Spec Files
29+
- name: Checkout Vulnerability Index Spec Files
3030
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3131
with:
32-
repository: anchore/vulnerability-data-spec-files
33-
path: .tmp/vulnerability-data-spec-files
32+
repository: anchore/vulnerability-index-spec-files
33+
path: .tmp/vulnerability-index-spec-files
3434
- name: Generate CVE 5 Enrichment Data
35-
run: anchore-security-cli -vvv legacy cve5 generate --spec-path .tmp/vulnerability-data-spec-files/data -o data/anchore
35+
run: anchore-security-cli -vvv legacy cve5 generate --spec-path .tmp/vulnerability-index-spec-files/data -o data/anchore
3636
- name: "Verify enrichment record json schema"
3737
run: check-jsonschema --schemafile schema/enrichment_record.schema.json data/**/**/*.json
3838
- name: Commit changes
3939
run: |
4040
git config user.email "github-actions[bot]@users.noreply.github.com"
4141
git config user.name "github-actions[bot]"
4242
./scripts/commit.sh
43-
git push
43+
git push

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
> [!WARNING]
2-
> The json data files in this repo are automatically generated every hour off of the data in https://github.com/anchore/vulnerability-data-spec-files. Do not manually edit data here.
2+
> The json data files in this repo are automatically generated every hour off of the data in https://github.com/anchore/vulnerability-index-spec-files. Do not manually edit data here.
33
4-
# CVE Data Enrichment
4+
# CVE Data Enrichment

scripts/commit.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -l
22
set -euxo pipefail
33

4-
commit=$(git -C .tmp/vulnerability-data-spec-files rev-parse HEAD)
4+
commit=$(git -C .tmp/vulnerability-index-spec-files rev-parse HEAD)
55
git add .
6-
git diff-index --quiet HEAD || git commit --message "chore: generate CVE 5 enrichment records from https://github.com/anchore/vulnerability-data-spec-files/commit/${commit}"
6+
git diff-index --quiet HEAD || git commit --message "chore: generate CVE 5 enrichment records from https://github.com/anchore/vulnerability-index-spec-files/commit/${commit}"

0 commit comments

Comments
 (0)