Skip to content

Commits

Commits on Jul 27, 2021

  1. Update checked-in dependencies

    github-actions[bot] committed Jul 27, 2021
    Copy the full SHA
    cc1adb8 View commit details
  2. Update checked-in dependencies

    github-actions[bot] committed Jul 27, 2021
    Copy the full SHA
    fb19072 View commit details

Commits on Jul 26, 2021

  1. Address PR comments from @robertbrignull

    Edoardo Pirovano authored and Edoardo Pirovano committed Jul 26, 2021
    Copy the full SHA
    934fb86 View commit details

Commits on Jul 21, 2021

  1. Update outdated Node package.

    Edoardo Pirovano committed Jul 21, 2021

    Unverified

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

Commits on Jul 14, 2021

  1. Fix dependabot vulnerabilities

    This adds some forced resolutions to ensure that vulnerable versions
    of packages are not installed.
    Andrew Eisenberg committed Jul 14, 2021
    Copy the full SHA
    ae97d8f View commit details

Commits on Jun 23, 2021

  1. Fix dependencies

    Andrew Eisenberg committed Jun 23, 2021
    Copy the full SHA
    9f37000 View commit details
  2. Merge branch 'main' into csharp-loc

    Andrew Eisenberg committed Jun 23, 2021
    Copy the full SHA
    c5434c9 View commit details
  3. Update lock file

    Andrew Eisenberg committed Jun 23, 2021
    Copy the full SHA
    e38356b View commit details
  4. Fix C# line counting and add test

    Edoardo Pirovano authored and Edoardo Pirovano committed Jun 23, 2021
    Copy the full SHA
    68b6873 View commit details
  5. Upgrade Actions Tool Cache.

    Chris Gavin committed Jun 23, 2021

    Unverified

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

Commits on Jun 3, 2021

  1. Allow the codeql-action to run packages

    This commit adds a `packs` option to the codeql-config.yml file. Users
    can specify a list of ql packs to include in the analysis.
    
    For a single language analysis, the packs property looks like this:
    
    ```yaml
    packs:
      - pack-scope/pack-name1@1.2.3
      - pack-scope/pack-name2   # no explicit version means download the latest
    ```
    
    For multi-language analysis, you must key the packs block by lanaguage:
    
    ```yaml
    packs:
      cpp:
        - pack-scope/pack-name1@1.2.3
        - pack-scope/pack-name2
      java:
        - pack-scope/pack-name3@1.2.3
        - pack-scope/pack-name4
    ```
    
    This implementation adds a new analysis run (alongside custom and 
    builtin runs). The unit tests indicate that the correct commands are
    being run, but I have not actually tried this with a real CLI.
    
    Also, convert `instanceof Array` to `Array.isArray` since that is
    sightly better in some situations. See:
    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray#instanceof_vs_isarray
    Andrew Eisenberg committed Jun 3, 2021
    Copy the full SHA
    86a804f View commit details

Commits on Jun 2, 2021

  1. Add some dependencies for uploading artifacts

    Edoardo Pirovano authored and Edoardo Pirovano committed Jun 2, 2021
    Copy the full SHA
    0cbd4b5 View commit details

Commits on Jun 1, 2021

  1. Use commander preAction hook for setMode

    Hooks are new to commander v8. We can use hooks to ensure that `setMode`
    is called before every command is invoked.
    Andrew Eisenberg committed Jun 1, 2021
    Copy the full SHA
    539d968 View commit details

Commits on May 19, 2021

  1. Add a changelog

    Adds an empty changelog file and a reminder to update it when opening
    pull requests.
    
    Also, adds a 1.0.0 version number in the package.json, which is what
    we _could_ use for version numbering.
    Andrew Eisenberg committed May 19, 2021
    Copy the full SHA
    8566f9b View commit details

Commits on May 12, 2021

  1. Update loc count library

    This version will count lines of code in each file serially. It still
    runs all file system operations asynchronously. The only difference now
    is that it will only count one file at a time. It is slower, but it
    is able to count large repositories without running out of memory.
    Andrew Eisenberg committed May 12, 2021
    Copy the full SHA
    ddcb299 View commit details

Commits on May 10, 2021

  1. Fix security vulnerabilities

    Ran `npm audit fix`.
    
    Even though this fixes a "high" severity vulnerability, all affected
    packages are dev packages only.
    Andrew Eisenberg committed May 10, 2021
    Copy the full SHA
    489dbb0 View commit details

Commits on Apr 28, 2021

  1. Avoid analyzing excluded language files for line counting

    This change passes in a list of file types to the line counting
    analysis. These are the languages for the databases being analyzed.
    Line count analysis is restricted to these files.
    Andrew Eisenberg committed Apr 28, 2021
    Copy the full SHA
    ee23462 View commit details
  2. Update github-linguist dependency

    This version adds a larger list of auto-excluded binary files.
    And allows for the passing of a list of file types to restrict
    analysis to.
    Andrew Eisenberg committed Apr 28, 2021
    Copy the full SHA
    5c0a38d View commit details

Commits on Apr 23, 2021

  1. Merge branch 'main' into aeisenberg/add-github-linguist

    Andrew Eisenberg authored and GitHub committed Apr 23, 2021

    Unverified

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

Commits on Apr 22, 2021

  1. Add the github-linguist package

    This commit only adds a single package and all of its transitive
    dependencies. The github-linguist package will be used for counting
    lines of code as a baseline for databases we are analyzing.
    Andrew Eisenberg committed Apr 22, 2021
    Copy the full SHA
    c4a84a9 View commit details
  2. Copy the full SHA
    8c91ba8 View commit details

Commits on Apr 1, 2021

  1. update node modules

    Robert committed Apr 1, 2021
    Copy the full SHA
    def266f View commit details

Commits on Feb 15, 2021

  1. Unverified

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

Commits on Dec 14, 2020

  1. update node_modules

    Robert committed Dec 14, 2020
    Copy the full SHA
    71c7759 View commit details

Commits on Nov 18, 2020

  1. Ensure unqualified program names are present on PATH before executi…

    …ng them.
    Chris Gavin committed Nov 18, 2020

    Unverified

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

Commits on Oct 5, 2020

  1. Merge branch 'main' into cbraynor/fix201

    Chris Raynor authored and GitHub committed Oct 5, 2020

    Unverified

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

Commits on Oct 3, 2020

  1. Updating node_modules

    Chris Raynor committed Oct 3, 2020

    Unverified

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

Commits on Sep 29, 2020

  1. Updating node_modules

    Chris Raynor committed Sep 29, 2020

    Unverified

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

Commits on Sep 21, 2020

  1. Fix retrying uploads by using Octokit retry plugin.

    Chris Gavin committed Sep 21, 2020

    Unverified

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

Commits on Sep 18, 2020

  1. Update to the latest version of @actions/github.

    Chris Gavin committed Sep 18, 2020

    Unverified

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

Commits on Sep 14, 2020

  1. Regenerating node_modules

    Chris Raynor committed Sep 14, 2020

    Unverified

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

Commits on Sep 13, 2020

  1. Vendoring node_modules

    Chris Raynor committed Sep 13, 2020

    Unverified

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

Commits on Aug 24, 2020

  1. update node_modules

    Robert Brignull committed Aug 24, 2020
    Copy the full SHA
    3c5b7fb View commit details

Commits on Aug 11, 2020

  1. commit node_modules and generated files

    Robert Brignull committed Aug 11, 2020
    Copy the full SHA
    34b3722 View commit details

Commits on Jul 24, 2020

  1. update lodash

    Robert committed Jul 24, 2020
    Copy the full SHA
    6f42543 View commit details
Older