Skip to content

Commit

Permalink
dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
raianand committed Sep 7, 2024
1 parent 8de4470 commit b83ed0b
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 29 deletions.
5 changes: 0 additions & 5 deletions __tests__/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ describe('index', () => {
it('should return an array', async () => {
const { getTrustedGithubAccounts } = require('../src/input')

// jest.mock('@actions/core', () => ({
// warning: (...args) => console.log(...args, '\n'),
// error: (...args) => console.log(...args, '\n')
// }))

const accounts = getTrustedGithubAccounts()

expect(accounts).toBeInstanceOf(Array)
Expand Down
12 changes: 1 addition & 11 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions src/audit_summary.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,6 @@ const { generateTestResults, getUniqueBy } = require('./summary_utils')
// const boltPID = "1479"
// const githubRunnerPID = '1446'

// function printNode(node, depth = 0) {
// if (depth === 0) {
// console.log(node.model.pid)
// } else {
// console.log(`${' '.repeat(depth - 1)}- ${node.model.pid}`)
// }
// node.children.forEach(c => printNode(c, depth + 1))
// }

function NewNode(pid) {
return {
pid,
Expand Down Expand Up @@ -180,7 +171,6 @@ async function getSudoCallingActions() {
const nonActionSudoCalls = sudoCalls.filter(
a => parentAction(processTree[a.process.pid]) === null
)
// console.log(nonActionSudoCalls.map(a => a.process));

const sudoCallingActions = getUniqueBy(
actionSudoCalls.map(a => {
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const releaseVersion = 'v1.7.0-rc.14'
const releaseVersion = 'v1.7.0-rc.15'

module.exports = {
releaseVersion
Expand Down

0 comments on commit b83ed0b

Please sign in to comment.