Skip to content

Commits

Commits on Feb 15, 2021

  1. Convert GitHub variant to an enum.

    Chris Gavin committed Feb 15, 2021

    Unverified

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

Commits on Feb 13, 2021

  1. Add detection for GitHub AE.

    Chris Gavin committed Feb 13, 2021

    Unverified

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

Commits on Jan 28, 2021

  1. Remove intermediate variables

    Sam Partington committed Jan 28, 2021
    Copy the full SHA
    19fe854 View commit details
  2. Remove parameters from uploadFromActions

    Retrieve the relevant values in the method itself instead.
    Sam Partington committed Jan 28, 2021
    Copy the full SHA
    c2377b2 View commit details

Commits on Jan 13, 2021

  1. Use the fully qualified ref name

    Robin Neatherway committed Jan 13, 2021
    Copy the full SHA
    369cad8 View commit details
  2. Correct typo in setting upload base ref

    Robin Neatherway committed Jan 13, 2021
    Copy the full SHA
    884ee1d View commit details

Commits on Jan 6, 2021

  1. Merge branch 'main' into split-upload-method

    Sam Partington committed Jan 6, 2021
    Copy the full SHA
    4e46a49 View commit details
  2. Copy the full SHA
    54e0c67 View commit details

Commits on Jan 4, 2021

  1. Add test of finding SARIF files recursively

    Robert committed Jan 4, 2021
    Copy the full SHA
    bd4e3ad View commit details

Commits on Dec 23, 2020

  1. Support find .sarif files recursively

    Chao Zhang committed Dec 23, 2020
    Copy the full SHA
    55eae66 View commit details

Commits on Dec 22, 2020

  1. Retrieve GitHubVersion when used rather than passing around

    Sam Partington committed Dec 22, 2020
    Copy the full SHA
    6de1b75 View commit details
  2. Merge branch 'main' into split-upload-method

    Sam Partington committed Dec 22, 2020
    Copy the full SHA
    82a8fa4 View commit details

Commits on Nov 30, 2020

  1. Fix test to be immune to running on Actions

    Robin Neatherway committed Nov 30, 2020
    Copy the full SHA
    d99e994 View commit details
  2. Use version information to construct payload

    Robin Neatherway committed Nov 30, 2020
    Copy the full SHA
    dff118f View commit details

Commits on Nov 26, 2020

  1. Request meta endpoint at the start of execution

    Robert committed Nov 26, 2020
    Copy the full SHA
    81a21bf View commit details
  2. Split upload method into two mode-specific ones

    Sam Partington committed Nov 26, 2020
    Copy the full SHA
    57514f3 View commit details

Commits on Nov 23, 2020

  1. Copy the full SHA
    20567b5 View commit details

Commits on Nov 19, 2020

  1. Run npm run build

    Eric Cornelissen committed Nov 19, 2020
    Copy the full SHA
    847f4ef View commit details

Commits on Nov 2, 2020

  1. Unverified

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

Commits on Oct 30, 2020

  1. Log a warning if the API version is not supported.

    Chris Gavin committed Oct 30, 2020

    Unverified

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

Commits on Oct 1, 2020

  1. Switching to import/order instead of sort-imports

    Chris Raynor committed Oct 1, 2020

    Unverified

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

Commits on Sep 29, 2020

  1. Resolve violations of sort-imports lint

    Resolves #206
    Chris Raynor committed Sep 29, 2020

    Unverified

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

Commits on Sep 25, 2020

  1. Resolve violations of no-throw-literal lint

    Resolves #204
    Michael Huynh committed Sep 25, 2020

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    476bf86 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 20, 2020

  1. Resolve violations of github/array-foreach lint

    Resolves #199
    Michael Huynh committed Sep 20, 2020

    Unverified

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

Commits on Sep 14, 2020

  1. Running lint-fix

    Chris Raynor committed Sep 14, 2020

    Unverified

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

Commits on Aug 26, 2020

  1. Convert rest of the actions

    Robert Brignull committed Aug 26, 2020
    Copy the full SHA
    217483d View commit details

Commits on Aug 25, 2020

  1. rename CLI to runner

    Robert Brignull committed Aug 25, 2020
    Copy the full SHA
    09677da View commit details

Commits on Aug 17, 2020

  1. fix alerts

    Robert Brignull committed Aug 17, 2020
    Copy the full SHA
    d49b867 View commit details

Commits on Aug 12, 2020

  1. Re-throw errors

    Robert Brignull committed Aug 12, 2020
    Copy the full SHA
    4b56177 View commit details
  2. address comments

    Robert Brignull committed Aug 12, 2020
    Copy the full SHA
    5b0aafa 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 Aug 4, 2020

  1. Allow the codeql-action to be run locally (#117)

    * Allow the codeql-action to be run locally
    
    This change allows the codeql-action to be run locally through
    [act](https://github.com/nektos/act).
    
    In order to run the action locally, you need to do two things:
    
    1. Add the `CODEQL_LOCAL_RUN: true` environment variable. The only way
       I could figure out how to do this was to add it directly in the
       workflow file in an `env` block. It _should_ be possible to add it
       through a `.env` file and pass it to `act`, but I couldn't get it
       working.
    2. Run this command `act -j codeql -s GITHUB_TOKEN=<MY_PAT>`
    
    Setting the `CODEQL_LOCAL_RUN` env var will fill in missing env vars
    that the action needs, but isn't set by `act`. It will also avoid
    making api calls to github that would fail locally.
    
    This is a refactoring discussed in
    https://github.com/github/dsp-codeql/issues/36
    Andrew Eisenberg authored and GitHub committed Aug 4, 2020

    Unverified

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

Commits on Jul 24, 2020

  1. Upload much more data in status reports

    Robert committed Jul 24, 2020
    Copy the full SHA
    87758a1 View commit details

Commits on Jul 6, 2020

  1. use @actions/github

    Robert Brignull committed Jul 6, 2020
    Copy the full SHA
    0086c2e View commit details
Older