Skip to content

Commit 04a87f0

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/typescript-eslint/parser-5.0.0
2 parents e2f39a6 + ecffc3c commit 04a87f0

File tree

23 files changed

+352
-49
lines changed

23 files changed

+352
-49
lines changed

.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

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: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql",
3-
"version": "1.0.19",
3+
"version": "1.0.20",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {

python-setup/tests/check_requests_123.ps1 renamed to python-setup/tests/check_requests_2_26_0.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ $env:PYTHONPATH=$FOUND_PYTHONPATH
1818

1919
$INSTALLED_REQUESTS_VERSION = (py -3 -c "import requests; print(requests.__version__)")
2020

21-
$EXPECTED_REQUESTS="1.2.3"
21+
$EXPECTED_REQUESTS="2.26.0"
2222

2323
if ($INSTALLED_REQUESTS_VERSION -ne $EXPECTED_REQUESTS) {
2424
write-host "Using $FOUND_PYTHONPATH as PYTHONPATH, we found version $INSTALLED_REQUESTS_VERSION of requests, but expected $EXPECTED_REQUESTS"
2525
exit 1
2626
} else {
2727
write-host "Using $FOUND_PYTHONPATH as PYTHONPATH, we found version $INSTALLED_REQUESTS_VERSION of requests, which was expected"
28-
}
28+
}

python-setup/tests/check_requests_123.sh renamed to python-setup/tests/check_requests_2_26_0.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ PYTHON_EXE="python${EXPECTED_VERSION}"
2222

2323
INSTALLED_REQUESTS_VERSION=$(PYTHONPATH="${FOUND_PYTHONPATH}" "${PYTHON_EXE}" -c 'import requests; print(requests.__version__)')
2424

25-
EXPECTED_REQUESTS="1.2.3"
25+
EXPECTED_REQUESTS="2.26.0"
2626

2727
if [[ "$INSTALLED_REQUESTS_VERSION" != "$EXPECTED_REQUESTS" ]]; then
2828
echo "Using ${FOUND_PYTHONPATH} as PYTHONPATH, we found version $INSTALLED_REQUESTS_VERSION of requests, but expected $EXPECTED_REQUESTS"
2929
exit 1
3030
else
3131
echo "Using ${FOUND_PYTHONPATH} as PYTHONPATH, we found version $INSTALLED_REQUESTS_VERSION of requests, which was expected"
32-
fi
32+
fi

python-setup/tests/pipenv/python-3.8/Pipfile.lock

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

python-setup/tests/pipenv/requests-2/Pipfile.lock

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

0 commit comments

Comments
 (0)