Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Archives
Today
Total
관리 메뉴

csct3434

Github Actions Secret 버그 본문

개발 일지

Github Actions Secret 버그

csct3434 2024. 3. 27. 20:47

https://github.com/orgs/community/discussions/25651

 

Github secret truncated after "$" · community · Discussion #25651

Hello, I found a bug in github secrets. If the secret contains “$”, for example “hello$world”. Then when used in github actions, we will only get “hello” and everything after and including the doll...

github.com

Github Actions Workflow에서 '$'는 특수한 목적으로 사용되는 문자입니다.

이로 인해 Github Actions Secret에 $가 포함되어 있다면, $ 뒤로 문자가 삭제되는 현상이 발생합니다. (ex : abcd$1234 -> abcd)

이번에 새로 추가한 비밀키에 우연히 $가 포함되어 있어서 서비스 배포 후 장애가 발생했는데, 다른 분들은 이와 같은 피해 입지 않으시길 바랍니다.