From e2e63124f33206a6041e3163370c33cdfce8ad41 Mon Sep 17 00:00:00 2001 From: rickstaa Date: Sat, 12 Dec 2020 16:41:42 +0100 Subject: [PATCH] :alien: Updates create-pull-request version to fix env security vurnerability This commit updates the create-pull-request action version such that a security vulnerability that is present when using the `set-env` and `add-path` arguments is fixed. See https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/ for more information. --- .github/workflows/depup.yml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/depup.yml b/.github/workflows/depup.yml index d2f10a3..7a48f2f 100644 --- a/.github/workflows/depup.yml +++ b/.github/workflows/depup.yml @@ -19,7 +19,7 @@ jobs: repo: reviewdog/reviewdog - name: Create Pull Request - uses: peter-evans/create-pull-request@v2 + uses: peter-evans/create-pull-request@v3 with: token: ${{ secrets.GITHUB_TOKEN }} title: "chore(deps): update reviewdog to ${{ steps.depup.outputs.latest }}" @@ -43,7 +43,7 @@ jobs: repo: redpen-cc/redpen - name: Create Pull Request - uses: peter-evans/create-pull-request@v2 + uses: peter-evans/create-pull-request@v3 with: token: ${{ secrets.GITHUB_TOKEN }} title: "chore(deps): update redpen to ${{ steps.depup.outputs.latest }}" diff --git a/README.md b/README.md index 2cb1573..bf680d1 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ jobs: repo: reviewdog/reviewdog - name: Create Pull Request - uses: peter-evans/create-pull-request@v2 + uses: peter-evans/create-pull-request@v3 with: token: ${{ secrets.GITHUB_TOKEN }} title: "chore(deps): update reviewdog to ${{ steps.depup.outputs.latest }}"