Skip to content

Commits

Commits on Jul 27, 2021

  1. Replace safeLoad with load

    Edoardo Pirovano committed Jul 27, 2021
    Copy the full SHA
    05fc5a8 View commit details
  2. Fix linting error

    Edoardo Pirovano committed Jul 27, 2021
    Copy the full SHA
    a81500c View commit details
  3. Fix failing test

    Edoardo Pirovano committed Jul 27, 2021
    Copy the full SHA
    186161e View commit details
  4. Rebuild after TypeScript version bump

    Edoardo Pirovano committed Jul 27, 2021
    Copy the full SHA
    d9849b8 View commit details

Commits on Jul 26, 2021

  1. Update codeql bunde to 20210726 / 2.5.8

    alexet committed Jul 26, 2021
    Copy the full SHA
    fb86024 View commit details

Commits on Jul 21, 2021

  1. Augment where we insert baseline lines of code

    Edoardo Pirovano committed Jul 21, 2021
    Copy the full SHA
    11d5669 View commit details

Commits on Jul 14, 2021

  1. Merge branch 'main' into aibaars/refactor-checkout-path

    Aditya Sharad authored and GitHub committed Jul 14, 2021
    Copy the full SHA
    d7dcff9 View commit details
  2. Merge branch 'main' into robertbrignull/databases_url

    Robert authored and GitHub committed Jul 14, 2021
    Copy the full SHA
    d09d89f View commit details
  3. Rename checkoutPath to either workspacePath or sourceRoot

    Arthur Baars committed Jul 14, 2021
    Copy the full SHA
    f94f1ed View commit details

Commits on Jul 13, 2021

  1. Install Python tools on self-hosted runners

    Edoardo Pirovano committed Jul 13, 2021
    Copy the full SHA
    cc14f29 View commit details
  2. use templating for language param

    Robert committed Jul 13, 2021
    Copy the full SHA
    96edcdf View commit details
  3. Update databases URL

    Robert committed Jul 13, 2021
    Copy the full SHA
    b0b9ab8 View commit details

Commits on Jul 2, 2021

  1. Merge branch 'main' into source-root-input

    Mario Campos authored and GitHub committed Jul 2, 2021
    Copy the full SHA
    a4a91a8 View commit details
  2. Update CodeQL bundle to 20210702 / 2.5.7

    Henning Makholm committed Jul 2, 2021
    Copy the full SHA
    870e8e3 View commit details

Commits on Jul 1, 2021

  1. Merge branch 'main' into source-root-input

    Aditya Sharad authored and GitHub committed Jul 1, 2021
    Copy the full SHA
    c6728b6 View commit details

Commits on Jun 30, 2021

  1. Copy the full SHA
    a607042 View commit details
  2. Clarify missing LoC baseline message

    Andrew Eisenberg committed Jun 30, 2021
    Copy the full SHA
    68f742b View commit details

Commits on Jun 29, 2021

  1. Recompile JS files to bring JS inline with TS for PR #607

    Mario Campos committed Jun 29, 2021
    Copy the full SHA
    e1cd524 View commit details
  2. Make 'source-root' init input relative to github.workspace

    In the previous commit, the default value of the input is ${{ github.workspace }}
    which means that most uses of this input would probably prefix their paths with
    ${{ github.workspace }}, especially since actions/checkout's 'path' input
    must be under ${{ github.workspace }}. Therefore, it doesn't make much sense for
    this to be an absolute file path.
    
    Instead, it's more intuitive to make this relative to the repository.
    Mario Campos committed Jun 29, 2021
    Copy the full SHA
    337ae83 View commit details
  3. Add 'source-root' input to init action

    This input is exposed in the CodeQL CLI as the flag --source-root, allowing
    users of the CLI to set --source-root different from --working-dir. However,
    in codeql-action, these two paths are conflated and it poses problems for
    users with complicated build environments, in which a source root may be
    a child of the working directory.
    
    Most users should not notice this, as the default value is
    ${{ github.workspace }}, as it is implied now (`path.resolve()`).
    Mario Campos committed Jun 29, 2021
    Copy the full SHA
    42babdf View commit details

Commits on Jun 28, 2021

  1. Merge branch 'main' into local-bundle

    Edoardo Pirovano authored and GitHub committed Jun 28, 2021
    Copy the full SHA
    d9050f4 View commit details
  2. Address PR comment.

    Edoardo Pirovano committed Jun 28, 2021
    Copy the full SHA
    a7dac5c View commit details
  3. Allow local instead of downloaded CodeQL

    Edoardo Pirovano committed Jun 28, 2021
    Copy the full SHA
    8f4c2c7 View commit details
  4. Support splitting of DB creation and query execution

    Edoardo Pirovano committed Jun 28, 2021
    Copy the full SHA
    ef852c0 View commit details

Commits on Jun 25, 2021

  1. Merge branch 'main' into aeisenberg/pack-in-inputs

    Andrew Eisenberg authored and GitHub committed Jun 25, 2021
    Copy the full SHA
    67312df View commit details
  2. Add extra integration test for packaging

    Also, update the options and inputs documentation.
    Andrew Eisenberg committed Jun 25, 2021
    Copy the full SHA
    4087f37 View commit details
  3. Remove misleading comment.

    Edoardo Pirovano authored and Edoardo Pirovano committed Jun 25, 2021
    Copy the full SHA
    85ac9fe View commit details

Commits on Jun 24, 2021

  1. Improve error messages from CLI invocations

    Edoardo Pirovano authored and Edoardo Pirovano committed Jun 24, 2021
    Copy the full SHA
    40852fa View commit details
  2. Merge branch 'main' into simon-engledew/fix-runner-temp-missing

    Andrew Eisenberg authored and GitHub committed Jun 24, 2021
    Copy the full SHA
    af32a29 View commit details
  3. Add Ruby to 'isInterpretedLanguage'

    Arthur Baars committed Jun 24, 2021
    Copy the full SHA
    a1f71cf View commit details
  4. Just reverse test case

    Simon Engledew committed Jun 24, 2021
    Copy the full SHA
    26ade03 View commit details
  5. Restore original getCodeQLActionRepository behaviour

    Simon Engledew committed Jun 24, 2021
    Copy the full SHA
    9200db3 View commit details

Commits on Jun 23, 2021

  1. Merge branch 'main' into csharp-loc

    Andrew Eisenberg committed Jun 23, 2021
    Copy the full SHA
    c5434c9 View commit details
  2. Add new packs input to init action

    This input allows users to specify which packs to run. It works in
    unison with the packs block of the config file and it is similar to
    how `queries` works. They both use `+` in the same way.
    
    Note that the `#TODO` in the pr check is still around, but the CLI
    is available. I will remove the TODO in the next commit.
    Andrew Eisenberg committed Jun 23, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    6e577cf View commit details
  3. Fix C# line counting and add test

    Edoardo Pirovano authored and Edoardo Pirovano committed Jun 23, 2021

    Unverified

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