Skip to content
Merged
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
16 changes: 1 addition & 15 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import {
resolveExistingCommentIfFound,
uploadArtifact,
} from './actions'
import { downloadKeys, trustedKeys } from './keys'
import { compareResults } from './tool'
import {
callCommand,
Expand Down Expand Up @@ -45,21 +44,8 @@ async function runAnalysis() {
const indirectDeps = getInput('eval-indirect-dependencies')
const toUpload: string[] = []

await downloadKeys()
// command to print both sarif and lwjson formats
var args = [
'sca',
'scan',
'.',
'-o',
scaDir,
'--formats',
'sarif,lw-json',
'--deployment',
'ci',
'--keyring',
trustedKeys,
]
var args = ['sca', 'scan', '.', '-o', scaDir, '--formats', 'sarif,lw-json', '--deployment', 'ci']
if (target === 'push') {
args.push('--save-results')
}
Expand Down
88 changes: 0 additions & 88 deletions src/keys.ts

This file was deleted.