diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/auto-approve.yml | 2 | ||||
-rw-r--r-- | .github/workflows/scorecard.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml index 250903fc..7e67a92b 100644 --- a/.github/workflows/auto-approve.yml +++ b/.github/workflows/auto-approve.yml @@ -11,7 +11,7 @@ jobs: PR_NUM: ${{ github.event.number }} run: echo $PR_NUM > pr_num.txt - name: Upload the PR number - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: pr_num path: ./pr_num.txt
\ No newline at end of file diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index cb9db177..b03b17b4 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -56,7 +56,7 @@ jobs: # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF # format to the repository Actions tab. - name: "Upload artifact" - uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 + uses: actions/upload-artifact@v3 # v3.1.0 with: name: SARIF file path: results.sarif |