Skip to content

Commit 86fea52

Browse files
authored
Merge branch 'main' into adityasharad/upload-sarif-limits
2 parents 73f3a24 + c89d9bd commit 86fea52

File tree

780 files changed

+23830
-571
lines changed

Some content is hidden

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

780 files changed

+23830
-571
lines changed

.github/workflows/__split-workflow.yml

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

.github/workflows/python-deps.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
5959
- name: Verify packages installed
6060
run: |
61-
$GITHUB_WORKSPACE/python-setup/tests/check_requests_123.sh ${PYTHON_VERSION}
61+
$GITHUB_WORKSPACE/python-setup/tests/check_requests_2_26_0.sh ${PYTHON_VERSION}
6262
6363
# This one shouldn't fail, but also won't install packages
6464
test-setup-python-scripts-non-standard-location:
@@ -123,6 +123,10 @@ jobs:
123123
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
124124
- uses: actions/checkout@v2
125125

126+
- uses: actions/setup-python@v2
127+
with:
128+
python-version: ${{ matrix.python-version }}
129+
126130
- name: Initialize CodeQL
127131
uses: ./init
128132
with:
@@ -149,5 +153,5 @@ jobs:
149153
150154
- name: Verify packages installed
151155
run: |
152-
$cmd = $Env:GITHUB_WORKSPACE + "\\python-setup\\tests\\check_requests_123.ps1"
156+
$cmd = $Env:GITHUB_WORKSPACE + "\\python-setup\\tests\\check_requests_2_26_0.ps1"
153157
powershell -File $cmd $Env:PYTHON_VERSION

.github/workflows/update-dependencies.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
update:
88
name: Update dependencies
99
runs-on: macos-latest
10-
if: contains(github.event.pull_request.labels.*.name, 'Update dependencies')
10+
if: contains(github.event.pull_request.labels.*.name, 'Update dependencies') && (github.event.pull_request.head.repo.full_name == 'github/codeql-action')
1111
steps:
1212
- name: Checkout repository
1313
uses: actions/checkout@v2
@@ -24,8 +24,8 @@ jobs:
2424
env:
2525
BRANCH: '${{ github.head_ref }}'
2626
run: |
27-
git fetch
28-
git checkout $BRANCH
27+
git fetch origin "$BRANCH" --depth=1
28+
git checkout "origin/$BRANCH"
2929
sudo npm install --force -g npm@latest
3030
npm install
3131
npm ci

CHANGELOG.md

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

55
No user facing changes.
66

7+
## 1.0.19 - 18 Oct 2021
8+
9+
No user facing changes.
10+
711
## 1.0.18 - 08 Oct 2021
812

913
- Fixed a bug where some builds were no longer being traced correctly. [#766](https://github.com/github/codeql-action/pull/766)

lib/defaults.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"bundleVersion": "codeql-bundle-20211005"
2+
"bundleVersion": "codeql-bundle-20211013"
33
}

node_modules/.package-lock.json

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

0 commit comments

Comments
 (0)