Home Github action set-output is deprecated
Post
Cancel

Github action set-output is deprecated

AS-IS

1
2
- name: Set output
  run: echo "::set-output name={name}::{value}"

기본 Github action workflow에서 step의 output값을 추가 할 때 위 처럼 활용했는데 보안 이슈로 deprecated

TO-BE

1
2
- name: Set output
  run: echo "{name}={value}" >> $GITHUB_OUTPUT
This post is licensed under CC BY 4.0 by the author.

Github action 종속 job의 결과에 따라 slack 전송

Spring access log Logstash 수집하기