From eff2742cbf52a94ab2d9ead6d87ea3fab3fd028b Mon Sep 17 00:00:00 2001 From: "Xinwei Xiong (cubxxw)" <3293172751nss@gmail.com> Date: Sat, 6 Jan 2024 13:12:38 +0800 Subject: [PATCH] update openim environment and status Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com> --- .github/workflows/openimci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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