Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e26d2f4

Browse files
committed
Fix deprecation warning in GitHub Actions.
See GitHub's post about switching away from add-path: https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
1 parent 06567e0 commit e26d2f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/reviewdog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
curl -sfL \
2323
https://github.com/reviewdog/reviewdog/raw/master/install.sh | \
2424
sh -s -- -b $HOME/bin
25-
echo ::add-path::$HOME/bin
25+
echo $HOME/bin >> $GITHUB_PATH
2626
2727
- name: Run flake8
2828
env:

0 commit comments

Comments
 (0)