From 73f3a2489679791d2f83b3e6e3aa8917cac56150 Mon Sep 17 00:00:00 2001 From: Aditya Sharad <6874315+adityasharad@users.noreply.github.com> Date: Thu, 14 Oct 2021 12:17:06 -0700 Subject: [PATCH 1/2] upload-sarif: Link to docs on upload limits --- upload-sarif/action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/upload-sarif/action.yml b/upload-sarif/action.yml index 21997efe3..bb9b2b8c3 100644 --- a/upload-sarif/action.yml +++ b/upload-sarif/action.yml @@ -3,7 +3,10 @@ description: 'Upload the analysis results' author: 'GitHub' inputs: sarif_file: - description: The SARIF file or directory of SARIF files to be uploaded. Each upload should contain a maximum of 1000 results, any additional results are ignored. + description: | + The SARIF file or directory of SARIF files to be uploaded to GitHub code scanning. + See https://docs.github.com/en/code-security/code-scanning/integrating-with-code-scanning/uploading-a-sarif-file-to-github#uploading-a-code-scanning-analysis-with-github-actions + for information on the maximum number of results and maximum file size supported by code scanning. required: false default: '../results' checkout_path: From d3f5d485b3ba3a5a0b717a366269789eb88c52d9 Mon Sep 17 00:00:00 2001 From: Edoardo Pirovano Date: Mon, 25 Oct 2021 18:09:40 +0100 Subject: [PATCH 2/2] Further fix to update dependencies workflow --- .github/workflows/update-dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 44c5c1ec1..a1657e7fe 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -35,5 +35,5 @@ jobs: git config --global user.name "github-actions[bot]" git add node_modules git commit -am "Update checked-in dependencies" - git push origin "$BRANCH" + git push origin "HEAD:$BRANCH" fi