Skip to content

Commits

Commits on Aug 11, 2021

  1. Reference exported names via import *.

    Henry Mercer committed Aug 11, 2021

    Unverified

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

Commits on Jul 27, 2021

  1. Rebuild after TypeScript version bump

    Edoardo Pirovano committed Jul 27, 2021

    Unverified

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

Commits on Jun 2, 2021

  1. Remove local environment running

    This is a functionality that never worked perfectly and hasn't been
    used for a while.
    
    This allows developers to run the action on their local machine, but
    the run was always flaky and never 100% mirrored what was happening on
    the actions runner.
    Andrew Eisenberg committed Jun 2, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    2c2ebdc View commit details
  2. Add environment variables to signal feature and version to the CLI

    This PR ensures environment variables are set before any invocation of
    the CLI.  Here is a list of vars that are set:
    
    https://github.com/github/codeql-coreql-team/issues/1124#issuecomment-852463521
    
    This ensures the CLI knows the features and versions of the containing
    actions/runner.
    
    Additionally:
    
    - Fix the user agent so that it more closely aligns with user agent
      spec
    - Refactor environment variable initialization so that it all happens in
      one place and call.
    - Move Mode, getRequiredEnvParam, setMode, getMode out of actions-util
      and into util. actions-util is meant for utils only called by the
      action, not the runner.
    
    The `prepareLocalRunEnvironment()` method is most likely deprecated and
    should be removed. I originally added it because I had a way of working
    where I would run the action from my local machine to test out changes,
    but this was always a little flaky. So, I no longer use this way of
    working. I will probably remove it soon.
    Andrew Eisenberg committed Jun 2, 2021
    Copy the full SHA
    3708898 View commit details

Commits on Mar 18, 2021

  1. Fix spelling errors

    spelling: executable
    spelling: github
    spelling: javascript
    spelling: latest
    spelling: occurred
    spelling: parameter
    
    Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
    Josh Soref authored and Andrew Eisenberg committed Mar 18, 2021
    Copy the full SHA
    c4fced7 View commit details

Commits on Feb 16, 2021

  1. Increase the default amount of RAM reserved for the OS

    Mitigation for OOM errors (137/SIGKILL) seen by users when we overcommit the available memory.
    For Unix, reserve 1GB.
    For Windows, reserve 1.5GB, as the OS needs more memory and estimates inaccurately.
    Aditya Sharad committed Feb 16, 2021
    Copy the full SHA
    4c94e29 View commit details
  2. Add capability to specify auth from env var or stdin

    This commit adds two new ways of specifying GitHub auth:
    
    1. from the GITHUB_TOKEN environment variable
    2. from standard input
    
    This commit does not include any documentation changes and the
    descriptions of new command line options will need to be tweaked.
    Andrew Eisenberg authored and Andrew Eisenberg committed Feb 16, 2021
    Copy the full SHA
    88714e3 View commit details

Commits on Feb 15, 2021

  1. Convert GitHub variant to an enum.

    Chris Gavin committed Feb 15, 2021
    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
    Copy the full SHA
    0656b2c View commit details

Commits on Nov 30, 2020

  1. 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

Commits on Nov 4, 2020

  1. Remove unnecessary env manipulation

    testing-utils.ts / setupTests() already stores and restores the env
    Simon Engledew committed Nov 4, 2020
    Copy the full SHA
    1c8d72e View commit details

Commits on Oct 5, 2020

  1. Use GITHUB_DOTCOM_URL so URL deduplication works

    Robert Brignull committed Oct 5, 2020
    Copy the full SHA
    b185050 View commit details
  2. Merge branch 'main' into robertbrignull/subdomain

    Robert Brignull committed Oct 5, 2020

    Unverified

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

Commits on Oct 1, 2020

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

    Chris Raynor committed Oct 1, 2020
    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
    Copy the full SHA
    228546a View commit details

Commits on Sep 28, 2020

  1. Make URL parsing more robust

    Robert Brignull committed Sep 28, 2020
    Copy the full SHA
    c4dc1b0 View commit details

Commits on Sep 15, 2020

  1. Add getOptionalInput and getRequiredInput

    Robert Brignull committed Sep 15, 2020
    Copy the full SHA
    c1cee53 View commit details
  2. Introduce actions-util.ts

    Robert Brignull committed Sep 15, 2020
    Copy the full SHA
    121fd33 View commit details

Commits on Sep 14, 2020

  1. Running lint-fix

    Chris Raynor committed Sep 14, 2020
    Copy the full SHA
    a184d50 View commit details

Commits on Sep 10, 2020

  1. add optional workflow input to specify whether snippets are added to …

    …sarif output
    Nick Fyson committed Sep 10, 2020
    Copy the full SHA
    77f767c View commit details

Commits on Sep 1, 2020

  1. Add --ram and --threads args

    Robert Brignull committed Sep 1, 2020
    Copy the full SHA
    4c00c68 View commit details

Commits on Aug 18, 2020

  1. build typescript

    Esben Sparre Andreasen committed Aug 18, 2020
    Copy the full SHA
    9597f2e 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
    Copy the full SHA
    42235cc 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

Commits on Jun 26, 2020

  1. Correct copy/pasted test description

    Robin Neatherway committed Jun 26, 2020
    Copy the full SHA
    151d531 View commit details
  2. Simplify singleton tests by removing the loop

    Robin Neatherway committed Jun 26, 2020
    Copy the full SHA
    a0d4330 View commit details
  3. getRequiredEnvParams must be non-empty

    Robin Neatherway committed Jun 26, 2020
    Copy the full SHA
    bb9ed79 View commit details

Commits on Jun 23, 2020

  1. Copy the full SHA
    bd40428 View commit details
  2. add calls

    Robert Brignull committed Jun 23, 2020
    Copy the full SHA
    56f06c7 View commit details

Commits on Jun 22, 2020

  1. reformat code and allow negative values for threads

    Alex Kalyvitis committed Jun 22, 2020
    Copy the full SHA
    3199693 View commit details
  2. move functions to util.ts

    Alex Kalyvitis committed Jun 22, 2020
    Copy the full SHA
    dcba709 View commit details

Commits on May 14, 2020

  1. enable source maps

    Robert Brignull committed May 14, 2020
    Copy the full SHA
    aa54af7 View commit details

Commits on May 13, 2020

  1. switch to using ava

    Robert Brignull committed May 13, 2020
    Copy the full SHA
    572c8bb View commit details
End of commit history for this file