Skip to content

Commit

Permalink
fix: finish upgrade and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Jun 30, 2024
1 parent e86cbde commit cbea8ea
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
key: odc-data
- uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'
- name: Set up JDK 1.8
id: jdk-8
uses: actions/setup-java@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/false-positive-ops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'nuget' }}
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'
- name: Setup dotnet fp-project
if: ${{ fromJSON(steps.purl-parser.outputs.result).type == 'nuget' }}
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
${{ runner.os }}-maven-
- uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'
- name: Set up JDK 1.8
id: jdk-8
uses: actions/setup-java@v4
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
${{ runner.os }}-maven-
- uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'
- name: Set up JDK 1.8
id: jdk-8
uses: actions/setup-java@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
key: odc-data
- uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'
- name: Set up JDK 1.8
id: jdk-8
uses: actions/setup-java@v4
Expand Down
2 changes: 1 addition & 1 deletion src/site/markdown/analyzers/assembly-analyzer.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ is internally referred to as evidence and is grouped into vendor, product, and v
buckets. Other analyzers later use this evidence to identify any Common Platform
Enumeration (CPE) identifiers that apply.

.NET core 6.x needs to be installed for this analyzer to work.
.NET core 8.x needs to be installed for this analyzer to work.

Files Types Scanned: EXE, DLL
2 changes: 1 addition & 1 deletion src/site/markdown/analyzers/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ to extract identification information from the files analyzed.
| Analyzer | File Types Scanned | Analysis Method |
| -------- | ------------------ | --------------- |
| [Archive](./archive-analyzer.html) | Zip archive format (\*.zip, \*.ear, \*.war, \*.jar, \*.sar, \*.apk, \*.nupkg); Tape Archive Format (\*.tar); Gzip format (\*.gz, \*.tgz); Bzip2 format (\*.bz2, \*.tbz2); RPM format (\*.rpm) | Extracts archive contents, then scans contents with all available analyzers. |
| [Assembly](./assembly-analyzer.html) | .NET Assemblies (\*.exe, \*.dll) | Uses [GrokAssembly.exe](https://github.com/colezlaw/GrokAssembly); requires the dotnet core 6.0 runtime to be installed. |
| [Assembly](./assembly-analyzer.html) | .NET Assemblies (\*.exe, \*.dll) | Uses [GrokAssembly.exe](https://github.com/colezlaw/GrokAssembly); requires the dotnet core 8.0 runtime to be installed. |
| [Jar](./jar-analyzer.html) | Java archive files (\*.jar); Web application archive (\*.war) | Examines archive manifest metadata, and Maven Project Object Model files (pom.xml). |
| [RetireJS](./retirejs-analyzer.html) | JavaScript files | Analyzes JavaScript files using the [RetireJS](https://github.com/RetireJS/retire.js) database. |
| [Node.js](./nodejs.html) | NPM package specification files (package.json) | Parses the package.json to gather a bill-of-materials for a Node JS project. |
Expand Down

0 comments on commit cbea8ea

Please sign in to comment.