Skip to content

Commit 18802bf

Browse files
chore(COD-6066): remove unnecessary cache keys (#237)
1 parent afccec4 commit 18802bf

File tree

2 files changed

+1
-103
lines changed

2 files changed

+1
-103
lines changed

src/index.ts

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {
66
resolveExistingCommentIfFound,
77
uploadArtifact,
88
} from './actions'
9-
import { downloadKeys, trustedKeys } from './keys'
109
import { compareResults } from './tool'
1110
import {
1211
callCommand,
@@ -45,21 +44,8 @@ async function runAnalysis() {
4544
const indirectDeps = getInput('eval-indirect-dependencies')
4645
const toUpload: string[] = []
4746

48-
await downloadKeys()
4947
// command to print both sarif and lwjson formats
50-
var args = [
51-
'sca',
52-
'scan',
53-
'.',
54-
'-o',
55-
scaDir,
56-
'--formats',
57-
'sarif,lw-json',
58-
'--deployment',
59-
'ci',
60-
'--keyring',
61-
trustedKeys,
62-
]
48+
var args = ['sca', 'scan', '.', '-o', scaDir, '--formats', 'sarif,lw-json', '--deployment', 'ci']
6349
if (target === 'push') {
6450
args.push('--save-results')
6551
}

src/keys.ts

Lines changed: 0 additions & 88 deletions
This file was deleted.

0 commit comments

Comments
 (0)