Skip to content

Commit be210aa

Browse files
committed
Merge alexdenisov/xref-decls into redsun82/swift-use-generated-classes
2 parents 4d6c8da + 08ad95b commit be210aa

File tree

314 files changed

+11365
-3611
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

314 files changed

+11365
-3611
lines changed

.github/labeler.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,31 @@
66
- csharp/**/*
77
- change-notes/**/*csharp*
88

9+
Go:
10+
- go/**/*
11+
- change-notes/**/*go.*
12+
913
Java:
10-
- java/**/*
14+
- any: [ 'java/**/*', '!java/kotlin-extractor/**/*', '!java/kotlin-explorer/**/*', '!java/ql/test/kotlin/**/*' ]
1115
- change-notes/**/*java.*
1216

1317
JS:
1418
- any: [ 'javascript/**/*', '!javascript/ql/experimental/adaptivethreatmodeling/**/*' ]
1519
- change-notes/**/*javascript*
1620

21+
Kotlin:
22+
- java/kotlin-extractor/**/*
23+
- java/kotlin-explorer/**/*
24+
- java/ql/test/kotlin/**/*
25+
1726
Python:
1827
- python/**/*
1928
- change-notes/**/*python*
2029

2130
Ruby:
2231
- ruby/**/*
2332
- change-notes/**/*ruby*
24-
33+
2534
Swift:
2635
- swift/**/*
2736
- change-notes/**/*swift*
@@ -31,5 +40,5 @@ documentation:
3140
- "**/*.md"
3241
- docs/**/*
3342

34-
"QL-for-QL":
43+
"QL-for-QL":
3544
- ql/**/*

.github/workflows/csv-coverage-pr-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
git log -1 --format='%H'
4242
working-directory: base
4343
- name: Set up Python 3.8
44-
uses: actions/setup-python@v3
44+
uses: actions/setup-python@v4
4545
with:
4646
python-version: 3.8
4747
- name: Download CodeQL CLI

.github/workflows/csv-coverage-pr-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Clone self (github/codeql)
2323
uses: actions/checkout@v3
2424
- name: Set up Python 3.8
25-
uses: actions/setup-python@v3
25+
uses: actions/setup-python@v4
2626
with:
2727
python-version: 3.8
2828

.github/workflows/csv-coverage-timeseries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
path: codeqlModels
2020
fetch-depth: 0
2121
- name: Set up Python 3.8
22-
uses: actions/setup-python@v3
22+
uses: actions/setup-python@v4
2323
with:
2424
python-version: 3.8
2525
- name: Download CodeQL CLI

.github/workflows/csv-coverage-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
path: ql
2323
fetch-depth: 0
2424
- name: Set up Python 3.8
25-
uses: actions/setup-python@v3
25+
uses: actions/setup-python@v4
2626
with:
2727
python-version: 3.8
2828
- name: Download CodeQL CLI

.github/workflows/csv-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
path: codeqlModels
2424
ref: ${{ github.event.inputs.qlModelShaOverride || github.ref }}
2525
- name: Set up Python 3.8
26-
uses: actions/setup-python@v3
26+
uses: actions/setup-python@v4
2727
with:
2828
python-version: 3.8
2929
- name: Download CodeQL CLI

.github/workflows/labeler.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44

55
jobs:
66
triage:
7+
permissions:
8+
contents: read
9+
pull-requests: write
710
runs-on: ubuntu-latest
811
steps:
912
- uses: actions/labeler@v4

.github/workflows/mad_modelDiff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
DATABASE=$2
6262
cd codeql-$QL_VARIANT
6363
SHORTNAME=`basename $DATABASE`
64-
python java/ql/src/utils/model-generator/GenerateFlowModel.py $DATABASE $MODELS/${SHORTNAME}.qll
64+
python java/ql/src/utils/model-generator/GenerateFlowModel.py --with-summaries --with-sinks $DATABASE $MODELS/${SHORTNAME}.qll
6565
mv $MODELS/${SHORTNAME}.qll $MODELS/${SHORTNAME}Generated_${QL_VARIANT}.qll
6666
cd ..
6767
}

.github/workflows/mad_regenerate-models.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
ref: ["placeholder"]
2121
include:
2222
- slug: "apache/commons-io"
23-
ref: "8985de8fe74f6622a419b37a6eed0dbc484dc128"
23+
ref: "13258ce2d07aa0e764bbaa8020af4dcd3a02a620"
2424
exclude:
2525
- slug: "placeholder"
2626
ref: "placeholder"

.github/workflows/query-list.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches:
66
- main
77
- 'rc/**'
8+
tags:
9+
- 'codeql-cli/*'
810
pull_request:
911
paths:
1012
- '.github/workflows/query-list.yml'
@@ -21,7 +23,7 @@ jobs:
2123
with:
2224
path: codeql
2325
- name: Set up Python 3.8
24-
uses: actions/setup-python@v3
26+
uses: actions/setup-python@v4
2527
with:
2628
python-version: 3.8
2729
- name: Download CodeQL CLI

0 commit comments

Comments
 (0)