Skip to content

Commit d3dc790

Browse files
authored
Merge branch 'main' into post-release-prep/codeql-cli-2.23.5
2 parents 466a6f3 + d122534 commit d3dc790

File tree

360 files changed

+24603
-23911
lines changed

Some content is hidden

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

360 files changed

+24603
-23911
lines changed

.github/workflows/build-ripunzip.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,33 @@
1-
name: Build runzip
1+
name: Build ripunzip
22

33
on:
44
workflow_dispatch:
55
inputs:
66
ripunzip-version:
77
description: "what reference to checktout from google/runzip"
88
required: false
9-
default: v2.0.2
109
openssl-version:
1110
description: "what reference to checkout from openssl/openssl for Linux"
1211
required: false
13-
default: openssl-3.5.0
12+
pull_request:
13+
paths:
14+
- .github/workflows/build-ripunzip.yml
15+
env:
16+
RIPUNZIP_DEFAULT: v2.0.3
17+
OPENSSL_DEFAULT: openssl-3.6.0
1418

1519
jobs:
1620
build:
1721
strategy:
1822
fail-fast: false
1923
matrix:
20-
os: [ubuntu-22.04, macos-13, windows-2022]
24+
os: [ubuntu-24.04, macos-15, windows-2025]
2125
runs-on: ${{ matrix.os }}
2226
steps:
2327
- uses: actions/checkout@v5
2428
with:
2529
repository: google/ripunzip
26-
ref: ${{ inputs.ripunzip-version }}
30+
ref: ${{ inputs.ripunzip-version || env.RIPUNZIP_DEFAULT }}
2731
# we need to avoid ripunzip dynamically linking into libssl
2832
# see https://github.com/sfackler/rust-openssl/issues/183
2933
- if: runner.os == 'Linux'
@@ -32,7 +36,7 @@ jobs:
3236
with:
3337
repository: openssl/openssl
3438
path: openssl
35-
ref: ${{ inputs.openssl-version }}
39+
ref: ${{ inputs.openssl-version || env.OPENSSL_DEFAULT }}
3640
- if: runner.os == 'Linux'
3741
name: build and install openssl with fPIC
3842
shell: bash

CODEOWNERS

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,29 @@
55
/actions/ @github/codeql-dynamic
66
/cpp/ @github/codeql-c-analysis
77
/csharp/ @github/codeql-csharp
8-
/csharp/autobuilder/Semmle.Autobuild.Cpp @github/codeql-c-extractor
9-
/csharp/autobuilder/Semmle.Autobuild.Cpp.Tests @github/codeql-c-extractor
8+
/csharp/autobuilder/Semmle.Autobuild.Cpp @github/codeql-c-extractor @github/code-scanning-language-coverage
9+
/csharp/autobuilder/Semmle.Autobuild.Cpp.Tests @github/codeql-c-extractor @github/code-scanning-language-coverage
1010
/go/ @github/codeql-go
11+
/go/codeql-tools/ @github/codeql-go @github/code-scanning-language-coverage
12+
/go/downgrades/ @github/codeql-go @github/code-scanning-language-coverage
13+
/go/extractor/ @github/codeql-go @github/code-scanning-language-coverage
14+
/go/extractor-smoke-test/ @github/codeql-go @github/code-scanning-language-coverage
15+
/go/ql/test/extractor-tests/ @github/codeql-go @github/code-scanning-language-coverage
1116
/java/ @github/codeql-java
1217
/javascript/ @github/codeql-javascript
18+
/javascript/extractor/ @github/codeql-javascript @github/code-scanning-language-coverage
1319
/python/ @github/codeql-python
20+
/python/extractor/ @github/codeql-python @github/code-scanning-language-coverage
1421
/ql/ @github/codeql-ql-for-ql-reviewers
1522
/ruby/ @github/codeql-ruby
23+
/ruby/extractor/ @github/codeql-ruby @github/code-scanning-language-coverage
1624
/rust/ @github/codeql-rust
25+
/rust/extractor/ @github/codeql-rust @github/code-scanning-language-coverage
1726
/shared/ @github/codeql-shared-libraries-reviewers
1827
/swift/ @github/codeql-swift
28+
/swift/extractor/ @github/codeql-swift @github/code-scanning-language-coverage
1929
/misc/codegen/ @github/codeql-swift
20-
/java/kotlin-extractor/ @github/codeql-kotlin
30+
/java/kotlin-extractor/ @github/codeql-kotlin @github/code-scanning-language-coverage
2131
/java/ql/test-kotlin1/ @github/codeql-kotlin
2232
/java/ql/test-kotlin2/ @github/codeql-kotlin
2333

0 commit comments

Comments
 (0)