diff --git a/.github/workflows/openimci.yml b/.github/workflows/openimci.yml index 10196b1a9..f29545c7f 100644 --- a/.github/workflows/openimci.yml +++ b/.github/workflows/openimci.yml @@ -285,17 +285,17 @@ jobs: - name: Get Docker Images and Processes id: docker_info run: | - echo "::set-output name=images::$(sudo docker images)" - echo "::set-output name=processes::$(sudo docker ps)" + echo "images=$(sudo docker images)" >> $GITHUB_ENV + echo "processes=$(sudo docker ps)" >> $GITHUB_ENV - name: Comment PR with Docker Info uses: ./ # Replace with the appropriate action to comment on PR with: message: | ### Docker Images: - ${{ steps.docker_info.outputs.images }} + ${{ env.images }} ### Docker Processes: - ${{ steps.docker_info.outputs.processes }} + ${{ env.processes }} comment_tag: docker_info reactions: eyes, rocket mode: recreate - # Include any other steps as needed \ No newline at end of file + # Include any other steps as needed