refactor: fix ::set-output deprecations (#79)

This commit is contained in:
Gowri
2022-10-21 06:28:22 +10:30
committed by GitHub
parent 84c16c2ad9
commit d8936216c0
5 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ runs:
shell: bash
working-directory: project
id: changed-files
run: echo "::set-output name=files::$(git diff --name-only --diff-filter=ACMRT ${{ github.event.pull_request.base.sha }} ${{ github.sha }} | xargs)"
run: echo "files=$(git diff --name-only --diff-filter=ACMRT ${{ github.event.pull_request.base.sha }} ${{ github.sha }} | xargs)" >> $GITHUB_OUTPUT
if: github.event_name == 'pull_request'
- name: Coding Standard Check