lhotari commented on code in PR #1409: URL: https://github.com/apache/pulsar-client-go/pull/1409#discussion_r2299879174
########## .github/workflows/ci.yml: ########## @@ -53,7 +53,7 @@ jobs: - uses: actions/checkout@v3 - name: Check for Docker images id: check_images - run: echo "::set-output name=images::$(docker images -q | wc -l)" + run: echo "{name}={images::$(docker images -q | wc -l)}" >> $GITHUB_OUTPUT Review Comment: The extra curly braces don't look right here. I'd assume that this could simply be: ```suggestion run: echo "images=$(docker images -q | wc -l)" >> $GITHUB_OUTPUT ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pulsar.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org