Skip to content

Commit ae26408

Browse files
committed
more cleanup
1 parent 2703a24 commit ae26408

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v1
12-
- uses: ./codeql/init
12+
- uses: ./init
1313
with:
1414
config-file: ./.github/codeql/codeql-config.yml
15-
- uses: ./codeql/finish
15+
- uses: ./finish

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Identifying potential files for extraction:
8686
- If it finds a subfolder that's defined as `paths-ignore`, stop traversing.
8787
- If a file or folder is both in `paths` and `paths-ignore`, the `paths-ignore` is ignored.
8888

89-
Use the config-file parameter of the codeql/init action to enable the configuration file. For example:
89+
Use the config-file parameter of the init action to enable the configuration file. For example:
9090

9191
```yaml
9292
- uses: github/codeql-action/init@master

lib/autobuild.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/finalize-db.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/setup-tracer.js

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

lib/upload-sarif.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/autobuild.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ async function run() {
5353
}
5454

5555
run().catch(e => {
56-
core.setFailed("codeql/autobuild action failed: " + e);
56+
core.setFailed("autobuild action failed: " + e);
5757
console.log(e);
5858
});

src/finalize-db.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,6 @@ async function run() {
159159
}
160160

161161
run().catch(e => {
162-
core.setFailed("codeql/finish action failed: " + e);
162+
core.setFailed("analyze action failed: " + e);
163163
console.log(e);
164164
});

src/setup-tracer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ async function run() {
166166
const goFlags = process.env['GOFLAGS'];
167167
if (goFlags) {
168168
core.exportVariable('GOFLAGS', goFlags);
169-
core.warning("Passing the GOFLAGS env parameter to the codeql/init action is deprecated. Please move this to the codeql/finish action.");
169+
core.warning("Passing the GOFLAGS env parameter to the init action is deprecated. Please move this to the analyze action.");
170170
}
171171

172172
// Setup CODEQL_RAM flag (todo improve this https://github.com/github/dsp-code-scanning/issues/935)
@@ -235,6 +235,6 @@ async function run() {
235235
}
236236

237237
run().catch(e => {
238-
core.setFailed("codeql/init action failed: " + e);
238+
core.setFailed("init action failed: " + e);
239239
console.log(e);
240240
});

src/upload-sarif.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ async function run() {
2020
}
2121

2222
run().catch(e => {
23-
core.setFailed("codeql/upload-sarif action failed: " + e);
23+
core.setFailed("upload-sarif action failed: " + e);
2424
console.log(e);
2525
});

0 commit comments

Comments
 (0)