Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
c41d287
Introduce wrapper around codeql
robertbrignull Jun 26, 2020
5ab09ae
Make parameter names more descriptive
robertbrignull Jul 2, 2020
9da537e
Merge pull request #93 from github/codeql_mock
robertbrignull Jul 6, 2020
0086c2e
use @actions/github
robertbrignull Jul 6, 2020
1aeb766
Add workflow_dispatch event
robertbrignull Jul 7, 2020
fe3dbb7
Add support for LGTM_INDEX_FILTERS
robertbrignull Jul 7, 2020
cfcff89
Merge pull request #101 from github/workflow_dispatch
robertbrignull Jul 7, 2020
8d908ee
Update codeql-config.yml
robertbrignull Jul 7, 2020
f77ab09
add sinon types
robertbrignull Jul 7, 2020
07caa0f
pull out mockGetContents method
robertbrignull Jul 7, 2020
13ee335
Merge remote-tracking branch 'origin/main' into github_proxy
robertbrignull Jul 7, 2020
56e74b9
Merge pull request #102 from github/exclude-lib
robertbrignull Jul 8, 2020
dcebdd6
give better error messages
robertbrignull Jul 8, 2020
9fb69dd
clarify error slightly more
robertbrignull Jul 8, 2020
abf6f23
trim leading slashes
robertbrignull Jul 8, 2020
56417be
filter ** paths
robertbrignull Jul 8, 2020
d781c66
Merge branch 'main' into lgtm_filters
robertbrignull Jul 9, 2020
8a6b404
add tests
robertbrignull Jul 9, 2020
b6efd2e
Merge remote-tracking branch 'origin/main' into github_proxy
robertbrignull Jul 9, 2020
bf5b437
output better errors
robertbrignull Jul 9, 2020
70980b9
Make characters completely illegal on windows
robertbrignull Jul 9, 2020
24367a8
move checking to when env vars are constructed
robertbrignull Jul 9, 2020
60126bf
ban backslashes
robertbrignull Jul 9, 2020
fb9f2af
adjust comments
robertbrignull Jul 10, 2020
ca775cf
remove bypass-proxy test
robertbrignull Jul 10, 2020
ec15477
Merge pull request #100 from github/github_proxy
robertbrignull Jul 10, 2020
1a4c658
Merge branch 'main' into lgtm_filters
robertbrignull Jul 10, 2020
189b6ef
ban / as a path
robertbrignull Jul 10, 2020
c3dcf26
Merge pull request #103 from github/lgtm_filters
robertbrignull Jul 10, 2020
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
3 changes: 2 additions & 1 deletion .github/codeql/codeql-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ queries:
- uses: security-extended
- uses: security-and-quality
paths-ignore:
- tests
- tests
- lib
28 changes: 27 additions & 1 deletion .github/workflows/integration-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ jobs:
env:
TEST_MODE: true


multi-language-repo_rubocop:
runs-on: ubuntu-latest

Expand Down Expand Up @@ -124,3 +123,30 @@ jobs:
sarif_file: rubocop.sarif
env:
TEST_MODE: true

test-proxy:
runs-on: ubuntu-latest
container:
image: ubuntu:18.04
options: --dns 127.0.0.1
services:
squid-proxy:
image: datadog/squid:latest
ports:
- 3128:3128
env:
https_proxy: http://squid-proxy:3128
steps:
- uses: actions/checkout@v2
- name: Move codeql-action
shell: bash
run: |
mkdir ../action
mv * .github ../action/
mv ../action/tests/multi-language-repo/{*,.github} .
- uses: ./../action/init
with:
languages: javascript
- uses: ./../action/analyze
env:
TEST_MODE: true
1 change: 1 addition & 0 deletions .github/workflows/update-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
# curl -H "Authorization: Bearer <token>" -X POST https://api.github.com/repos/github/codeql-action/dispatches -d '{"event_type":"update-release-branch"}'
# Replace <token> with a personal access token from this page: https://github.com/settings/tokens
types: [update-release-branch]
workflow_dispatch:

jobs:
update:
Expand Down
45 changes: 38 additions & 7 deletions lib/analysis-paths.js

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

2 changes: 1 addition & 1 deletion lib/analysis-paths.js.map

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

10 changes: 6 additions & 4 deletions lib/analysis-paths.test.js

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

2 changes: 1 addition & 1 deletion lib/analysis-paths.test.js.map

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

15 changes: 7 additions & 8 deletions lib/api-client.js

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

2 changes: 1 addition & 1 deletion lib/api-client.js.map

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

17 changes: 3 additions & 14 deletions lib/autobuild.js

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

2 changes: 1 addition & 1 deletion lib/autobuild.js.map

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

Loading