Skip to content

Commit

Permalink
Merge pull request #4 from StefSchenkelaars/fix-add-path-deprecation-…
Browse files Browse the repository at this point in the history
…warning

Fixed add-path deprecation warnings
  • Loading branch information
shogo82148 authored Oct 22, 2020
2 parents 1d162a2 + e5d0b2e commit bc9c1f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/depup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: |
mkdir -p $HOME/bin
curl -sfL https://install.goreleaser.com/github.com/mvdan/sh.sh | sh -s -- -b $HOME/bin
echo ::add-path::$HOME/bin
echo $HOME/bin >> $GITHUB_PATH
- run: shfmt -i 2 -ci -w .
- name: suggester / shfmt
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ echo '::group::🐶 Installing reviewdog ... https://github.com/reviewdog/review
curl -sfL "${INSTALL_SCRIPT}" | sh -s -- -b "${TEMP}/reviewdog/bin" "${VERSION}" 2>&1
echo '::endgroup::'

echo "::add-path::${TEMP}/reviewdog/bin"
echo "${TEMP}/reviewdog/bin" >>"${GITHUB_PATH}"

0 comments on commit bc9c1f7

Please sign in to comment.