Skip to content

Commit

Permalink
Merge branch 'main' into aeisenberg/python-on-mac
Browse files Browse the repository at this point in the history
  • Loading branch information
henrymercer committed Nov 13, 2023
2 parents ed686ed + e280207 commit 64981bb
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 13 deletions.
8 changes: 5 additions & 3 deletions .github/actions/setup-swift/action.yml
Expand Up @@ -24,9 +24,11 @@ runs:
VERSION="5.7.0"
elif [ $VERSION = "5.8" ]; then
VERSION="5.8.0"
# setup-swift does not yet support v5.8.1 Remove this when it does.
elif [ $VERSION = "5.8.1" ]; then
VERSION="5.8.0"
elif [ $VERSION = "5.9" ]; then
VERSION="5.9.0"
# setup-swift does not yet support v5.9.1 Remove this when it does.
elif [ $VERSION = "5.9.1" ]; then
VERSION="5.9.0"
fi
fi
echo "version=$VERSION" | tee -a $GITHUB_OUTPUT
Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/debug-artifacts-failure.yml
Expand Up @@ -42,6 +42,17 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: ^1.13.1
- name: Setup Python on MacOS
uses: actions/setup-python@v4
if: |
matrix.os == 'macos-latest' && (
matrix.version == 'stable-20220908' ||
matrix.version == 'stable-20221211' ||
matrix.version == 'stable-20230418' ||
matrix.version == 'stable-v2.13.5' ||
matrix.version == 'stable-v2.14.6')
with:
python-version: '3.11'
- uses: ./../action/init
with:
tools: ${{ steps.prepare-test.outputs.tools-url }}
Expand All @@ -52,7 +63,7 @@ jobs:
shell: bash
run: ./build.sh
- uses: ./../action/analyze
id: analysis
id: analysis
with:
expect-error: true
ram: 1
Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/debug-artifacts.yml
Expand Up @@ -49,6 +49,17 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: ^1.13.1
- name: Setup Python on MacOS
uses: actions/setup-python@v4
if: |
matrix.os == 'macos-latest' && (
matrix.version == 'stable-20220908' ||
matrix.version == 'stable-20221211' ||
matrix.version == 'stable-20230418' ||
matrix.version == 'stable-v2.13.5' ||
matrix.version == 'stable-v2.14.6')
with:
python-version: '3.11'
- uses: ./../action/init
id: init
with:
Expand All @@ -63,7 +74,7 @@ jobs:
shell: bash
run: ./build.sh
- uses: ./../action/analyze
id: analysis
id: analysis
download-and-check-artifacts:
name: Download and check debug artifacts
needs: upload-artifacts
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,7 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th
## [UNRELEASED]

- Customers running Python analysis on macOS using version 2.14.6 or earlier of the CodeQL CLI should upgrade to CodeQL CLI version 2.15.0 or later. If you do not wish to upgrade the CodeQL CLI, ensure that you are using Python version 3.11 or earlier, as CodeQL version 2.14.6 and earlier do not support Python 3.12. You can achieve this by adding a [`setup-python`](https://github.com/actions/setup-python) step to your code scanning workflow before the step that invokes `github/codeql-action/init`.
- Update default CodeQL bundle version to 2.15.2. [#1978](https://github.com/github/codeql-action/pull/1978)

## 2.22.5 - 27 Oct 2023

Expand Down
8 changes: 4 additions & 4 deletions lib/defaults.json
@@ -1,6 +1,6 @@
{
"bundleVersion": "codeql-bundle-v2.15.1",
"cliVersion": "2.15.1",
"priorBundleVersion": "codeql-bundle-v2.15.0",
"priorCliVersion": "2.15.0"
"bundleVersion": "codeql-bundle-v2.15.2",
"cliVersion": "2.15.2",
"priorBundleVersion": "codeql-bundle-v2.15.1",
"priorCliVersion": "2.15.1"
}
8 changes: 4 additions & 4 deletions src/defaults.json
@@ -1,6 +1,6 @@
{
"bundleVersion": "codeql-bundle-v2.15.1",
"cliVersion": "2.15.1",
"priorBundleVersion": "codeql-bundle-v2.15.0",
"priorCliVersion": "2.15.0"
"bundleVersion": "codeql-bundle-v2.15.2",
"cliVersion": "2.15.2",
"priorBundleVersion": "codeql-bundle-v2.15.1",
"priorCliVersion": "2.15.1"
}

0 comments on commit 64981bb

Please sign in to comment.