Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge main into releases/v3 #2131

Merged
merged 25 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
921adb6
Update changelog and version after v3.24.0
github-actions[bot] Feb 2, 2024
da89f3f
Update checked-in dependencies
github-actions[bot] Feb 2, 2024
1d4866b
Only run custom `checkout_path` tests against a single CodeQL version
henrymercer Feb 2, 2024
e1fa6dd
Disable debug mode in checkout path tests
henrymercer Feb 2, 2024
15b447d
Merge pull request #2114 from github/mergeback/v3.24.0-to-main-e8893c57
henrymercer Feb 2, 2024
39cc02b
Merge pull request #2116 from github/henrymercer/reduce-checkout-path…
henrymercer Feb 2, 2024
cf7e9f2
Bump the npm group with 2 updates (#2118)
dependabot[bot] Feb 6, 2024
db6e5ff
Extract separate function for `warnIfGoInstalledAfterInit`
henrymercer Feb 2, 2024
0fe34bd
Extract language appropriately in analyze step when build mode specified
henrymercer Feb 2, 2024
8fb654e
Don't run autobuild in analyze if already ran in autobuild
henrymercer Feb 7, 2024
0ab8e2a
Test omitting autobuild Action when build mode specified
henrymercer Feb 7, 2024
9e39a05
Document `action.inputs.token` (#2110)
jsoref Feb 8, 2024
932a7d5
Remove stray trailing spaces (#2122)
jsoref Feb 8, 2024
f3ced61
Add PR checks for other build modes
henrymercer Feb 8, 2024
fc9f9e5
Merge pull request #2120 from github/henrymercer/no-autobuild-action-…
henrymercer Feb 8, 2024
1515e2b
Refactor configuration errors (#2105)
angelapwen Feb 8, 2024
8fae32e
Update default bundle to codeql-bundle-v2.16.2
github-actions[bot] Feb 8, 2024
9a734da
Add changelog note
github-actions[bot] Feb 8, 2024
3ab1d29
Stop running debug artifacts checks on MacOS (#2123)
angelapwen Feb 9, 2024
b0346e4
Merge branch 'main' into update-bundle/codeql-bundle-v2.16.2
dbartol Feb 12, 2024
43a8916
Merge pull request #2124 from github/update-bundle/codeql-bundle-v2.16.2
dbartol Feb 12, 2024
5a6da1d
Treat status reports as non-critical
jsoref Jan 31, 2024
4075abf
Merge pull request #2121 from jsoref/status-reports-are-not-critical
aeisenberg Feb 12, 2024
c79c360
Bump the npm group with 3 updates (#2128)
dependabot[bot] Feb 13, 2024
41154da
Update changelog for v3.24.1
github-actions[bot] Feb 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
88 changes: 88 additions & 0 deletions .github/workflows/__build-mode-autobuild.yml

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

90 changes: 90 additions & 0 deletions .github/workflows/__build-mode-manual.yml

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

3 changes: 3 additions & 0 deletions .github/workflows/__build-mode-none.yml

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

4 changes: 2 additions & 2 deletions .github/workflows/__config-export.yml

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

2 changes: 1 addition & 1 deletion .github/workflows/__diagnostics-export.yml

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

2 changes: 1 addition & 1 deletion .github/workflows/__multi-language-autodetect.yml

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

37 changes: 0 additions & 37 deletions .github/workflows/__with-checkout-path.yml

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

42 changes: 18 additions & 24 deletions .github/workflows/debug-artifacts-failure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,12 @@ on:
workflow_dispatch: {}
jobs:
upload-artifacts:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
name: Upload debug artifacts after failure in analyze
continue-on-error: true
env:
CODEQL_ACTION_TEST_MODE: true
timeout-minutes: 45
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Dump GitHub event
run: cat "${GITHUB_EVENT_PATH}"
Expand Down Expand Up @@ -67,27 +64,24 @@ jobs:
- name: Check expected artifacts exist
shell: bash
run: |
OPERATING_SYSTEMS="ubuntu-latest macos-latest"
LANGUAGES="cpp csharp go java javascript python"
for os in $OPERATING_SYSTEMS; do
pushd "./my-debug-artifacts-$os"
echo "Artifacts from run on $os:"
for language in $LANGUAGES; do
echo "- Checking $language"
if [[ ! -f "my-db-$language-partial.zip" ]] ; then
echo "Missing a partial database bundle for $language"
exit 1
fi
if [[ ! -d "log" ]] ; then
echo "Missing database initialization logs"
exit 1
fi
if [[ ! "$language" == "go" ]] && [[ ! -d "$language/log" ]] ; then
echo "Missing logs for $language"
exit 1
fi
done
popd
pushd "./my-debug-artifacts"
echo "Artifacts from run:"
for language in $LANGUAGES; do
echo "- Checking $language"
if [[ ! -f "my-db-$language-partial.zip" ]] ; then
echo "Missing a partial database bundle for $language"
exit 1
fi
if [[ ! -d "log" ]] ; then
echo "Missing database initialization logs"
exit 1
fi
if [[ ! "$language" == "go" ]] && [[ ! -d "$language/log" ]] ; then
echo "Missing logs for $language"
exit 1
fi
done
popd
env:
GO111MODULE: auto