Skip to content

Commit

Permalink
refactor: replace deprecated set-output command
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwaller committed Dec 11, 2022
1 parent 6c3bdcd commit 7ddf879
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/job_lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
id: excluded-charts
run: |
exclude=$(./.github/scripts/generate-chart-exclude-string.sh "${{ matrix.chart.path }}")
echo "::set-output name=excluded-charts::$exclude"
echo "excluded-charts=$exclude" >> $GITHUB_OUTPUT
echo $exclude
- name: Check if version bump is required
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/job_preparation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ jobs:
'${{ steps.change-detection.outputs.ci }}' \
'${{ steps.change-detection.outputs.charts_files }}' \
)
echo "::set-output name=config::$output"
echo "config=$output" >> $GITHUB_OUTPUT
echo $output

0 comments on commit 7ddf879

Please # to comment.