Skip to content

Commit 677980d

Browse files
committed
additional cleanup
1 parent 6b554a9 commit 677980d

4 files changed

Lines changed: 4 additions & 101 deletions

File tree

.github/workflows/CHANGELOGS/run_semgrep_scan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ All notable changes to the **run_semgrep_scan** callable workflow are documented
66

77
### Changed
88

9-
- Updated workflow to support cross-repository usage by checking out the core-github-actions repository into a subdirectory and referencing all internal actions and scripts from that subdirectory. This ensures that required actions and scripts are always available, regardless of which repository invokes the workflow.
9+
- Updated workflow to support cross-repository usage by repo qualifying the internal composite action calls.
1010

1111
## 1.0.0
1212

.github/workflows/run_semgrep_scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
normalized_baseline: ${{ steps.semgrep.outputs.normalizedBaseline }}
138138

139139
steps:
140-
- name: Checkout Calling Repo
140+
- name: Checkout code
141141
uses: actions/checkout@v4
142142
with:
143143
ref: ${{ inputs.commit_identifier }}

package-lock.json

Lines changed: 0 additions & 94 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,9 @@
2727
"audit": "npm audit --audit-level=high --omit=dev",
2828
"lint:check": "eslint *.js --ext .js,.json",
2929
"lint:fix": "eslint *.js --ext .js,.json --fix",
30-
"format:check": "prettier --check './*.js' './*.mjs' './*.json' './*.md' 'scripts/**/*.js' '.github/actions/**/*.yml' '.github/actions/**/*.md' '.github/actions/**/*.js'",
31-
"format:fix": "prettier --write './*.js' './*.mjs' './*.json' './*.md' 'scripts/**/*.js' '.github/actions/**/*.yml' '.github/actions/**/*.md' '.github/actions/**/*.js'",
30+
"format:check": "prettier --check './*.js' './*.mjs' './*.json' './*.md' 'scripts/**/*.js' '.github/actions/**/*.*'",
31+
"format:fix": "prettier --write './*.js' './*.mjs' './*.json' './*.md' 'scripts/**/*.js' '.github/actions/**/*.*'",
3232
"scan": "semgrep --config=p/ci --config=p/security-audit --config=p/javascript ./*.js ./*.mjs ./*.json scripts/ .github/actions/",
3333
"check": "npm run audit && npm run test && npm run lint:check && npm run format:check && npm run scan"
34-
},
35-
"dependencies": {
36-
"node-fetch": "3.3.2"
3734
}
3835
}

0 commit comments

Comments
 (0)