Skip to content

Commits

Commits on Feb 3, 2022

  1. Add ML-powered queries enablement to init status report

    We report this information in the `init` status report rather than the
    `analyze` status report so we can gather data about timeouts.
    Henry Mercer committed Feb 3, 2022
    Copy the full SHA
    1cddec9 View commit details
  2. Convert status report comments to documentation

    Henry Mercer committed Feb 3, 2022
    Copy the full SHA
    a005206 View commit details

Commits on Feb 2, 2022

  1. Merge branch 'main' into dependabot/npm_and_yarn/ava/typescript-3.0.1

    Henry Mercer authored and GitHub committed Feb 2, 2022
    Copy the full SHA
    6a6a320 View commit details
  2. Fix typo in error message

    Arthur Baars committed Feb 2, 2022
    Copy the full SHA
    d57c276 View commit details

Commits on Feb 1, 2022

  1. Merge branch 'main' into dependabot/npm_and_yarn/ava/typescript-3.0.1

    Henry Mercer authored and GitHub committed Feb 1, 2022
    Copy the full SHA
    e9aa623 View commit details
  2. Upgrade Ava to v4

    Henry Mercer committed Feb 1, 2022
    Copy the full SHA
    ce89f1b View commit details
  3. Merge branch 'aeisenberg/permissions' into add-ref-input

    Andrew Eisenberg committed Feb 1, 2022
    Copy the full SHA
    13f97c8 View commit details
  4. Avoid sending status reports in test mode

    Andrew Eisenberg committed Feb 1, 2022
    Copy the full SHA
    36419a7 View commit details
  5. Updates javascript files

    Alex Croteau committed Feb 1, 2022
    Copy the full SHA
    3cc8799 View commit details
  6. Adds check on inputs and compiled files

    Alex Croteau committed Feb 1, 2022
    Copy the full SHA
    1eaaf07 View commit details

Commits on Jan 25, 2022

  1. Merge branch 'rneatherway/content-type' of github.com:github/codeql-a…

    …ction into rneatherway/content-type
    Robin Neatherway committed Jan 25, 2022
    Copy the full SHA
    5f30e24 View commit details
  2. Try string literal key

    Robin Neatherway committed Jan 25, 2022
    Copy the full SHA
    486633d View commit details
  3. Merge branch 'main' into rneatherway/content-type

    Robin Neatherway authored and GitHub committed Jan 25, 2022
    Copy the full SHA
    d6360c9 View commit details
  4. Merge branch 'main' into rneatherway/remove-old-upload-path

    Robin Neatherway committed Jan 25, 2022
    Copy the full SHA
    e13c8bb View commit details

Commits on Jan 24, 2022

  1. Merge branch 'main' into aeisenberg/remove-experiemental-message

    Andrew Eisenberg authored and GitHub committed Jan 24, 2022
    Copy the full SHA
    1f7dab4 View commit details
  2. Update changelog

    Andrew Eisenberg committed Jan 24, 2022
    Copy the full SHA
    f8c38c1 View commit details
  3. Update tests to remove feature flag

    Robin Neatherway committed Jan 24, 2022
    Copy the full SHA
    10249d1 View commit details
  4. Remove experimental warning message for custom packs

    Andrew Eisenberg committed Jan 24, 2022
    Copy the full SHA
    e6bcd71 View commit details
  5. Reword changelog entry and add back test

    Andrew Eisenberg committed Jan 24, 2022
    Copy the full SHA
    806fc12 View commit details
  6. Merge branch 'main' into aeisenberg/better-error

    Andrew Eisenberg authored and GitHub committed Jan 24, 2022
    Copy the full SHA
    ba352d3 View commit details
  7. Set contentType for database uploads

    Robin Neatherway committed Jan 24, 2022
    Copy the full SHA
    751af2a View commit details
  8. Remove old upload path

    The `useUploadDomain` approach is now fully enabled
    Robin Neatherway committed Jan 24, 2022
    Copy the full SHA
    1a686e7 View commit details
  9. Update default CodeQL version to 2.7.6

    Edoardo Pirovano committed Jan 24, 2022
    Copy the full SHA
    3b4e4d4 View commit details

Commits on Jan 21, 2022

  1. Update error message and remove feature flag preloading

    Discussion here https://github.com/github/codeql-action/pull/882#discussion_r789924177
    shows that properly handling preloading feature flag errors is complex
    and the benefit we get from it does not offset the complexity.
    Andrew Eisenberg committed Jan 21, 2022
    Copy the full SHA
    f18151c View commit details
  2. Ensure loadApiError is caught

    And add a better error message.
    
    By using `void` instead of `await`, any error thrown is not caught
    by surrounding try-catch blocks.
    
    I could continue to use `void` and explicitly handle any thrown errors
    by using `.catch`, but most likely the time savings is minimal and
    this makes the code more complex.
    Andrew Eisenberg committed Jan 21, 2022
    Copy the full SHA
    752ae57 View commit details
  3. Merge branch 'main' into aeisenberg/multi-init

    Andrew Eisenberg authored and GitHub committed Jan 21, 2022
    Copy the full SHA
    5e69ce8 View commit details
  4. Respect extra options in a few codeql calls

    Edoardo Pirovano committed Jan 21, 2022
    Copy the full SHA
    14b4839 View commit details

Commits on Jan 20, 2022

  1. Include better error message

    When users call init multiple times.
    Andrew Eisenberg committed Jan 20, 2022
    Copy the full SHA
    51126e5 View commit details

Commits on Jan 17, 2022

  1. Copy the full SHA
    776db51 View commit details
  2. Copy the full SHA
    9913c9b View commit details
  3. Merge branch 'main' into aeisenberg/category-with-tool

    Andrew Eisenberg authored and GitHub committed Jan 17, 2022
    Copy the full SHA
    8de62be View commit details

Commits on Jan 14, 2022

  1. Unverified

    No user is associated with the committer email.
    Copy the full SHA
    df0c306 View commit details

Commits on Jan 13, 2022

  1. Allow duplicate categories in the same validation step

    A single SARIF file should be allowed to have duplicated
    categories.
    Andrew Eisenberg committed Jan 13, 2022

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    ab1f709 View commit details

Commits on Jan 12, 2022

  1. Change category uniqueness test

    Turboscan only allows a single combination of tool name and automation
    details id for testing category uniqueness.
    
    Previously, the check in the action was not entirely correct since it
    only looked at the _category_ and not the combination of the category
    and the tool name.
    
    It's even more precise now since it is looking at the actual, computed
    value of the automation details id, rather than an inputted value of
    the category.
    
    This change also includes a refactoring where the action is now avoiding
    multiple parsing/stringifying of the sarif files. Instead, sarif is
    parsed once at the start of the process and stringified once, after
    sarif processing is completely finished.
    Andrew Eisenberg committed Jan 12, 2022

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    8454e21 View commit details
  2. Bump CodeQL version to 2.7.5

    Henning Makholm committed Jan 12, 2022

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    d85c3e5 View commit details
Older