fix(github): Replace deprecated set-output from github-actions (#1860)
fix(github): Remove deprecated set-output from github-actions Warning in GitHub Actions: ``` Warning: The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ Warning: The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ ``` Signed-off-by: jmeridth <jmeridth@gmail.com>
This commit is contained in:
parent
f66c40319a
commit
4f48352af1
1 changed files with 2 additions and 2 deletions
4
.github/workflows/lint-and-test.yml
vendored
4
.github/workflows/lint-and-test.yml
vendored
|
@ -38,8 +38,8 @@ jobs:
|
|||
changed=$(ct --config ./.github/configs/ct-lint.yaml list-changed)
|
||||
charts=$(echo "$changed" | tr '\n' ' ' | xargs)
|
||||
if [[ -n "$changed" ]]; then
|
||||
echo "::set-output name=changed::true"
|
||||
echo "::set-output name=changed_charts::$charts"
|
||||
echo "changed=true" >> $GITHUB_STATE
|
||||
echo "changed_charts=$charts" >> $GITHUB_STATE
|
||||
fi
|
||||
|
||||
- name: Run chart-testing (lint)
|
||||
|
|
Loading…
Reference in a new issue