Merge branch 'js/ci-github-set-env'

CI update.

* js/ci-github-set-env:
  ci: avoid using the deprecated `set-env` construct
This commit is contained in:
Junio C Hamano 2020-11-11 13:18:39 -08:00
Родитель ca8870d7c1 cac42e471a
Коммит 719b92eeaf
1 изменённых файлов: 1 добавлений и 1 удалений

2
.github/workflows/check-whitespace.yml поставляемый
Просмотреть файл

@ -14,7 +14,7 @@ jobs:
steps:
- name: Set commit count
shell: bash
run: echo "::set-env name=COMMIT_DEPTH::$((1+$COMMITS))"
run: echo "COMMIT_DEPTH=$((1+$COMMITS))" >>$GITHUB_ENV
env:
COMMITS: ${{ github.event.pull_request.commits }}