Skip to content

Commit

Permalink
fix deprecated outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
hatemosphere committed Oct 18, 2023
1 parent 44fa484 commit 1349905
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/handle_llvm_runner_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ jobs:
- id: set_output
run: |
if [ "${{ steps.determine_changes.outputs.llvm_runner_any_changed }}" == "true" ]; then
echo "::set-output name=image_to_build::llvm_runner"
echo "image_to_build=llvm_runner" >> $GITHUB_OUTPUT
elif [ "${{ steps.determine_changes.outputs.llvm_runner_jammy_any_changed }}" == "true" ]; then
echo "::set-output name=image_to_build::llvm_runner_jammy"
echo "image_to_build=llvm_runner_jammy" >> $GITHUB_OUTPUT
elif [ "${{ steps.determine_changes.outputs.both_any_changed }}" == "true" ]; then
echo "::set-output name=image_to_build::both"
echo "image_to_build=both" >> $GITHUB_OUTPUT
else
echo "::set-output name=image_to_build::none"
echo "image_to_build=none" >> $GITHUB_OUTPUT
fi
handle_image:
Expand Down

0 comments on commit 1349905

Please sign in to comment.