Skip to content

Commits

Permalink
2c0da4bcc7
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 Jul 1, 2021

  1. Remove build.sh step from 'source-root' test

    As this test is using only JS, it's not necessary to compile or analyze the other languages.
    Mario Campos committed Jul 1, 2021
    Copy the full SHA
    2c0da4b View commit details
  2. Copy the full SHA
    12f1cff View commit details
  3. Merge branch 'source-root-input' of github.com:mario-campos/codeql-ac…

    …tion into source-root-input
    Mario Campos committed Jul 1, 2021
    Copy the full SHA
    2ca807c View commit details
  4. Avoid moving repo files out of \$GITHUB_WORKSPACE in 'source-root' test

    Moving the files into ../action was causing the job to fail because it couldn't find the test directory anymore. According to @adityasharad, these 'mv's should
    not be necessary. Removing these means changing the path to the actions.
    
    I'm also removing the 'config-file' input to keep the test minimal. I think this will mean that CodeQL will use the default query suite, so I hope that this doesn't change the results.
    Mario Campos committed Jul 1, 2021
    Copy the full SHA
    1c69fae View commit details
  5. Delete 'packaing' from source-root test job name

    The test is not related to packaging.
    
    Co-authored-by: Aditya Sharad <6874315+adityasharad@users.noreply.github.com>
    2 people authored and GitHub committed Jul 1, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    67d6f79 View commit details
  6. Use different config file for testing 'source-root' input

    This config file 'ought to have some queries good for testing!
    Mario Campos committed Jul 1, 2021
    Copy the full SHA
    028f98f View commit details
  7. Add test case for 'source-root' input to 'init' Action

    Mario Campos committed Jul 1, 2021
    Copy the full SHA
    c78fb87 View commit details
  8. Clarify 'source-root' description to include default path

    This addresses @adityasharad's suggestions in PR #607.
    Mario Campos committed Jul 1, 2021
    Copy the full SHA
    45c0f11 View commit details
  9. Merge branch 'main' into source-root-input

    Aditya Sharad authored and GitHub committed Jul 1, 2021

    Unverified

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

Commits on Jun 30, 2021

  1. Merge pull request #609 from github/aeisenberg/use-default-tools

    Remove a TODO and use defautl tools option
    Andrew Eisenberg authored and GitHub committed Jun 30, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    fd614e5 View commit details
  2. Remove a TODO and use defautl tools option

    Andrew Eisenberg committed Jun 30, 2021
    Copy the full SHA
    0792832 View commit details
  3. Copy the full SHA
    a607042 View commit details
  4. Use path.resolve instead of path.join for sourceRoot

    Thanks to @aibaars, `path.resolve()` should will nicely handle more use-cases, namely absolute paths better than `path.join()`.
    
    Co-authored-by: Arthur Baars <aibaars@github.com>
    2 people authored and GitHub committed Jun 30, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    35e1b55 View commit details
  5. Refer to $GITHUB_WORKSPACE specifically in source-root description

    Previously, I had tried to refer to '${{ github.workspace }}', but that caused a problem in Actions. Trying to avoid the issue, I changed this to "the workspace," but this gives up quite a bit of specificity.
    
    Co-authored-by: Arthur Baars <aibaars@github.com>
    2 people authored and GitHub committed Jun 30, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    66df091 View commit details
  6. Merge pull request #608 from github/aeisenberg/baseline-message

    Clarify missing LoC baseline message
    Andrew Eisenberg authored and GitHub committed Jun 30, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    c6b33b9 View commit details
  7. Update CHANGELOG

    Andrew Eisenberg committed Jun 30, 2021
    Copy the full SHA
    d939c4b View commit details
  8. 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. Update CHANGELOG for PR #607

    Mario Campos committed Jun 29, 2021
    Copy the full SHA
    57f584a View commit details
  3. Remove '${{ github.workspace }}' from action.yml

    It causes the action to break (or rather that context being unavailable causes it to fail), despite it being in the description field.
    Mario Campos committed Jun 29, 2021
    Copy the full SHA
    a05a7f9 View commit details
  4. 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
  5. 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 pull request #606 from edoardopirovano/local-bundle

    Allow local instead of downloaded CodeQL
    Edoardo Pirovano authored and GitHub committed Jun 28, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    c357ca7 View commit details
  2. Merge branch 'main' into local-bundle

    Edoardo Pirovano authored and GitHub committed Jun 28, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    d9050f4 View commit details
  3. Address PR comment.

    Edoardo Pirovano committed Jun 28, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    a7dac5c View commit details
  4. Merge pull request #602 from edoardopirovano/split-create-analysis

    Support splitting of DB creation and query execution
    Edoardo Pirovano authored and GitHub committed Jun 28, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    53cf5d9 View commit details
  5. Merge branch 'main' into split-create-analysis

    Edoardo Pirovano authored and GitHub committed Jun 28, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    93214ec View commit details
  6. Allow local instead of downloaded CodeQL

    Edoardo Pirovano committed Jun 28, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    8f4c2c7 View commit details
  7. Merge pull request #600 from edoardopirovano/integration-test

    Run tests against nightly CLI bundles
    Edoardo Pirovano authored and GitHub committed Jun 28, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    24ef87c View commit details
  8. Run tests against nightly CLI bundles

    Edoardo Pirovano committed Jun 28, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    9547001 View commit details
  9. Merge pull request #605 from github/aeisenberg/pr-checks-dispatch

    Allow  to be run on workflow_dispatch
    Edoardo Pirovano authored and GitHub committed Jun 28, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    4a7cc17 View commit details
  10. Allow to be run on workflow_dispatch

    Andrew Eisenberg committed Jun 28, 2021
    Copy the full SHA
    a689115 View commit details
  11. Support splitting of DB creation and query execution

    Edoardo Pirovano committed Jun 28, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    ef852c0 View commit details
  12. Merge pull request #603 from github/mergeback/v1.0.4-to-main-03450ff6

    Mergeback v1.0.4 refs/heads/v1 into main
    Edoardo Pirovano authored and GitHub committed Jun 28, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    1e61ecb View commit details
  13. Merge branch 'main' into mergeback/v1.0.4-to-main-03450ff6

    Edoardo Pirovano authored and GitHub committed Jun 28, 2021

    Unverified

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