Skip to content

Commits

Permalink
1cc5f1d5dd
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Jun 8, 2021

  1. Packaging: Address review comments

    1. Better malformed data guard for PackDownloadOutput
    2. Fix Packs type
    3. Remove TODO in init-action
    Andrew Eisenberg committed Jun 8, 2021
    Copy the full SHA
    1cc5f1d View commit details

Commits on Jun 6, 2021

  1. Run the pack download command

    Andrew Eisenberg committed Jun 6, 2021
    Copy the full SHA
    d87945e View commit details

Commits on Jun 4, 2021

  1. Avoid using SemVer instances

    Use strings instead. They are easier to serialize and deserialize.
    Andrew Eisenberg committed Jun 4, 2021
    Copy the full SHA
    06687e9 View commit details
  2. Fix logic for calculating if there are queries to run

    During the analyze phase.
    Andrew Eisenberg committed Jun 4, 2021
    Copy the full SHA
    9b5753a View commit details
  3. Copy the full SHA
    6cee818 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
  2. Merge pull request #539 from github/aeisenberg/env-vars

    Add environment variables to signal feature and version to the CLI
    Andrew Eisenberg authored and GitHub committed Jun 3, 2021
    Copy the full SHA
    cbdf0df View commit details
  3. Cleaning up comments around env vars

    Also, move `getTemporaryDirectory` back to `actions-util`.
    Andrew Eisenberg committed Jun 3, 2021
    Copy the full SHA
    f60ef17 View commit details

Commits on Jun 2, 2021

  1. Fix Unguarded actions library use code scanning error

    Must access the env var directly in order to avoid recursive calls to 
    `getRequiredEnvParam`.
    Andrew Eisenberg committed Jun 2, 2021
    Copy the full SHA
    cc0733f View commit details
  2. Merge branch 'main' into aeisenberg/env-vars

    Andrew Eisenberg committed Jun 2, 2021
    Copy the full SHA
    082575f View commit details
  3. 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
    Copy the full SHA
    2c2ebdc View commit details
  4. 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
  5. Merge pull request #542 from github/robertbrignull/import-actions-lib

    Update unguarded-action-lib.ql to catch uses of actions-util.ts
    Aditya Sharad authored and GitHub committed Jun 2, 2021
    Copy the full SHA
    1ec2fd7 View commit details
  6. Update unguarded-action-lib.ql

    Robert authored and GitHub committed Jun 2, 2021
    Copy the full SHA
    61b5618 View commit details
  7. Merge pull request #541 from github/update-supported-enterprise-serve…

    …r-versions
    
    Update supported GitHub Enterprise Server versions.
    Andrew Eisenberg authored and GitHub committed Jun 2, 2021
    Copy the full SHA
    4ac9009 View commit details
  8. Merge branch 'main' into update-supported-enterprise-server-versions

    Andrew Eisenberg authored and GitHub committed Jun 2, 2021
    Copy the full SHA
    e8486b0 View commit details
  9. Add some dependencies for uploading artifacts

    Edoardo Pirovano authored and Edoardo Pirovano committed Jun 2, 2021
    Copy the full SHA
    0cbd4b5 View commit details
  10. Merge branch 'main' into update-supported-enterprise-server-versions

    Andrew Eisenberg authored and GitHub committed Jun 2, 2021
    Copy the full SHA
    739e14d View commit details
  11. Merge pull request #536 from github/aeisenberg/commander

    Use commander preAction hook for setMode
    Andrew Eisenberg authored and GitHub committed Jun 2, 2021
    Copy the full SHA
    1d05ad7 View commit details
  12. Copy the full SHA
    2fee124 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
  2. Merge pull request #534 from github/aeisenberg/mergeback-fix

    Fix the mergeback workflow
    Andrew Eisenberg authored and GitHub committed Jun 1, 2021
    Copy the full SHA
    4b4a5ee View commit details

Commits on May 31, 2021

  1. 1.0.1

    Andrew Eisenberg committed May 31, 2021
    Copy the full SHA
    f0e82b7 View commit details
  2. Fix EOF newlines after npm version patch

    The removeNPMAbsolutePaths check requires no newlines at the
    end of the file. This ensures that the version update mimics
    the behavior.
    Andrew Eisenberg committed May 31, 2021
    Copy the full SHA
    c02d8cc View commit details
  3. Manually update the CHANGELOG

    This should have happened in a mergeback PR, but the workflow to
    generate this was broken.
    Andrew Eisenberg committed May 31, 2021
    Copy the full SHA
    a94829c View commit details
  4. Copy the full SHA
    7d701d2 View commit details
  5. Fix the mergeback workflow

    We need to tag and mergeback if the tag does _not_ already exist.
    Andrew Eisenberg committed May 31, 2021
    Copy the full SHA
    981b5cb View commit details
  6. Merge pull request #516 from github/aeisenberg/user-agent

    Send version and mode to code scanning via user agent
    Andrew Eisenberg authored and GitHub committed May 31, 2021
    Copy the full SHA
    ca94508 View commit details
  7. Use the version from package.json in the runner

    Andrew Eisenberg committed May 31, 2021
    Copy the full SHA
    1a4cdd3 View commit details
  8. Use the version from package.json in the runner

    Update the ql queries to account for change in how we look for runner
    
    Previously, we guarded blocks of code to be run by the runner or the
    action using if statements like this:
    
    ```js
    if (mode === "actions") ...
    ```
    
    We are no longer doing this. And now, the `unguarded-action-lib.ql`
    query is out of date. This query checks that runner code does not
    unintentionally access actions-only methods in the libraries.
    
    With these changes, we now ensure that code scanning is happy.
    Andrew Eisenberg committed May 31, 2021
    Copy the full SHA
    4164096 View commit details
  9. Send the version and mode with the user agent

    This commit changes the way the action determines if running in action
    or runner mode. There is now an environment variable that is set at the
    beginning of the process and elsewhere in the process, we can check to
    see if the variable is set.
    Andrew Eisenberg committed May 31, 2021
    Copy the full SHA
    4758879 View commit details
  10. Merge pull request #438 from okyanusoz/patch-1

    Fix wording in README
    Andrew Eisenberg authored and GitHub committed May 31, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    fad7cc4 View commit details
  11. Merge pull request #533 from github/update-v1.0.0-ff75ec7f

    Merge main into v1
    Andrew Eisenberg authored and GitHub committed May 31, 2021
    Copy the full SHA
    4917d3c View commit details
  12. Remove leading newline

    Minor change.
    Andrew Eisenberg authored and GitHub committed May 31, 2021
    Copy the full SHA
    dd66f44 View commit details
  13. 1.0.0

    github-actions[bot] committed May 31, 2021

    Unverified

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