diff --git a/.github/workflows/publish-container.yml b/.github/workflows/publish-container.yml index a127316..0f1ad8d 100644 --- a/.github/workflows/publish-container.yml +++ b/.github/workflows/publish-container.yml @@ -23,5 +23,5 @@ jobs: - name: 'Build Inventory Image' run: | - docker build . --tag ghcr.io/retirejs/retire-scanner:latest - docker push ghcr.io/retirejs/retire-scanner:latest \ No newline at end of file + docker build . --tag ghcr.io/retirejs/retire-site-scanner:latest + docker push ghcr.io/retirejs/retire-site-scanner:latest \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a84bef..bf00772 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.0.3 + +Renaming from retire-scanner to retire-site-scanner as name was taken + ## 1.0.2 Fixing build script diff --git a/README.md b/README.md index 19f32b2..95d8ce8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# retire-scanner +# retire-site-scanner Scans a URL and looks for JavaScript libraries with known vulnerabilities using retire.js. Can also produce a partial SBOM for the site. @@ -22,15 +22,15 @@ npm run start -- [-v] [--sbom] ``` git clone git@github.com:RetireJS/retire-scanner.git cd retire-scanner -docker build -t retire-scanner . +docker build -t retire-site-scanner . ``` **Scanning** ``` -docker run --rm retire-scanner [-v] [--sbom] +docker run --rm retire-site-scanner [-v] [--sbom] ``` ## SBOM support -`retire-scanner` can generate a partial SBOM in the CycloneDX v1.4 format. This cannot be considered a complete SBOM for the web site, as it cannot necessarily detect all technologies in use, but can be used as a partial SBOM listing libraries and services. +`retire-site-scanner` can generate a partial SBOM in the CycloneDX v1.4 format. This cannot be considered a complete SBOM for the web site, as it cannot necessarily detect all technologies in use, but can be used as a partial SBOM listing libraries and services. diff --git a/package-lock.json b/package-lock.json index 5c40952..52c1f63 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { - "name": "retire-scanner", - "version": "1.0.2", + "name": "retire-site-scanner", + "version": "1.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "retire-scanner", - "version": "1.0.2", + "name": "retire-site-scanner", + "version": "1.0.3", "license": "Apache-2.0", "dependencies": { "cacheable-lookup": "^7.0.0", diff --git a/package.json b/package.json index fb38d4f..c9bcc7c 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,14 @@ { "author": "Erlend Oftedal ", - "name": "retire-scanner", - "version": "1.0.2", + "name": "retire-site-scanner", + "version": "1.0.3", "license": "Apache-2.0", "description": "A scanner for checking a web site using retire.js", "main": "dist/index.js", + "repository": { + "type": "git", + "url": "https://github.com/RetireJS/retire-scanner.git" + }, "bin": { "retire-scanner": "dist/index.js" },