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 #2529

Merged
merged 33 commits into from
Oct 7, 2024
Merged

Commits on Sep 18, 2024

  1. Add basic Rust support for internal testing

    Paolo Tranquilli committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    6fc72c1 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2024

  1. Bump the npm group with 3 updates

    Bumps the npm group with 3 updates: [@actions/core](https:/actions/toolkit/tree/HEAD/packages/core), [@typescript-eslint/eslint-plugin](https:/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) and [@typescript-eslint/parser](https:/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser).
    
    
    Updates `@actions/core` from 1.10.1 to 1.11.0
    - [Changelog](https:/actions/toolkit/blob/main/packages/core/RELEASES.md)
    - [Commits](https:/actions/toolkit/commits/HEAD/packages/core)
    
    Updates `@typescript-eslint/eslint-plugin` from 8.7.0 to 8.8.0
    - [Release notes](https:/typescript-eslint/typescript-eslint/releases)
    - [Changelog](https:/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
    - [Commits](https:/typescript-eslint/typescript-eslint/commits/v8.8.0/packages/eslint-plugin)
    
    Updates `@typescript-eslint/parser` from 8.7.0 to 8.8.0
    - [Release notes](https:/typescript-eslint/typescript-eslint/releases)
    - [Changelog](https:/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
    - [Commits](https:/typescript-eslint/typescript-eslint/commits/v8.8.0/packages/parser)
    
    ---
    updated-dependencies:
    - dependency-name: "@actions/core"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm
    - dependency-name: "@typescript-eslint/eslint-plugin"
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm
    - dependency-name: "@typescript-eslint/parser"
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    a66a5fe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f0c7f1d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    08bec82 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4beccf7 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2024

  1. Configuration menu
    Copy the full SHA
    868284b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    35de01e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    15f615c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    01007b8 View commit details
    Browse the repository at this point in the history
  5. Extract runGitCommand()

    cklin committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    955d001 View commit details
    Browse the repository at this point in the history
  6. Rename determineMergeBaseCommitOid()

    The name suggests that the function computes the merge base, which for
    Git means specifically the best common ancestors between multiple
    commits or branches (see `git merge-base`).
    
    But what the function actually does is to calculate the HEAD commit of
    the PR base branch, as derived from the PR merge commit that the action
    analyzes. So even though the function has to do with "merge" and "base",
    using the term "merge base" is still misleading at best.
    
    This commit renames the function to determineBaseBranchHeadCommitOid(),
    which more clearly indicates what the function does.
    cklin committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    d64cca4 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    495ca58 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a83506b View commit details
    Browse the repository at this point in the history
  9. Mergeback v3.26.11 refs/heads/releases/v3 into main (#2523)

    * Update changelog for v3.26.11
    
    * Update changelog and version after v3.26.11
    
    * Update checked-in dependencies
    
    ---------
    
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    Co-authored-by: Angela P Wen <[email protected]>
    angelapwen and github-actions[bot] authored Oct 3, 2024
    Configuration menu
    Copy the full SHA
    15649f6 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #2521 from github/cklin/run-git-command

    Misc cleanups on git command invocation
    cklin authored Oct 3, 2024
    Configuration menu
    Copy the full SHA
    8b33300 View commit details
    Browse the repository at this point in the history
  11. Update README with detailed information

    Update `README.md` to include detailed information about inputs, workflow permissions, build modes, and actions.
    
    * **Inputs**: Add a section on inputs, including the `config` option, `languages`, `queries`, `packs`, `db-location`, `ram`, `threads`, and `source-root`.
    * **Workflow Permissions**: Add a section on workflow permissions required for the actions.
    * **Build Modes**: Add a section explaining the different build modes available for the actions (`none`, `autobuild`, `manual`).
    * **Actions**: Add a section describing the different actions (`init`, `autobuild`, `analyze`, `upload-sarif`, `resolve-environment`, `start-proxy`) and how to use them, with links to the relevant documentation on GitHub.
    
    ---
    
    For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/github/codeql-action?shareId=XXXX-XXXX-XXXX-XXXX).
    aeisenberg committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    873c91c View commit details
    Browse the repository at this point in the history
  12. Clean up README

    Restructured the change to the README. Instead of directly including the
    descriptions of the language inputs, added links to the inputs for each
    action.
    aeisenberg committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    c768f67 View commit details
    Browse the repository at this point in the history
  13. Update readme

    aeisenberg committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    3b143d4 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2024

  1. Configuration menu
    Copy the full SHA
    bed2a47 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2520 from github/update-supported-enterprise-serv…

    …er-versions
    
    Update supported GitHub Enterprise Server versions
    henrymercer authored Oct 4, 2024
    Configuration menu
    Copy the full SHA
    76aafb9 View commit details
    Browse the repository at this point in the history
  3. Fix changelog note section

    This went into the wrong place due to a semantic merge conflict
    henrymercer committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    6c8758f View commit details
    Browse the repository at this point in the history
  4. Merge pull request #2525 from github/henrymercer/fix-changelog-section

    Fix changelog note section
    henrymercer authored Oct 4, 2024
    Configuration menu
    Copy the full SHA
    215ff9c View commit details
    Browse the repository at this point in the history
  5. Merge pull request #2415 from aeisenberg/aeisenberg/update-readme-1

    Update README with detailed information
    aeisenberg authored Oct 4, 2024
    Configuration menu
    Copy the full SHA
    46d955c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    057e1ec View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    64871a8 View commit details
    Browse the repository at this point in the history
  8. Update default bundle to 2.19.1 (#2519)

    * Update default bundle to codeql-bundle-v2.19.1
    
    * Add changelog note
    
    ---------
    
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    Co-authored-by: Angela P Wen <[email protected]>
    angelapwen and github-actions[bot] authored Oct 4, 2024
    Configuration menu
    Copy the full SHA
    1532671 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8a56dd2 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #2518 from github/dependabot/npm_and_yarn/npm-8815…

    …6698cd
    
    Bump the npm group with 3 updates
    aeisenberg authored Oct 4, 2024
    Configuration menu
    Copy the full SHA
    7cf65a5 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2024

  1. Merge pull request #2489 from github/redsun82/rust

    Add basic Rust support for internal testing
    redsun82 authored Oct 7, 2024
    Configuration menu
    Copy the full SHA
    56d1975 View commit details
    Browse the repository at this point in the history
  2. Update src/tar.ts

    Co-authored-by: Andrew Eisenberg <[email protected]>
    henrymercer and aeisenberg authored Oct 7, 2024
    Configuration menu
    Copy the full SHA
    bf2e624 View commit details
    Browse the repository at this point in the history
  3. Rebuild

    github-actions[bot] committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    d65a176 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #2526 from github/henrymercer/check-zstd-on-path

    Check zstd is on the path in addition to tar version
    henrymercer authored Oct 7, 2024
    Configuration menu
    Copy the full SHA
    c9a70ff View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    570aecb View commit details
    Browse the repository at this point in the history