2024년 11주차 기록
2024.03.12
    github-actions 에러해결 디버깅
        03/11 (월) ~ 03/17 (일)
오랫만에 push 했더니 아래와 같은 github 에러가 발생한다
- 드가자~ (해결하러)
문제화면
 
- 첫번째 문제
    - build_and_depoly
- Node.js 16 actions are deprecated.
- Please update the following actions to use Node.js 20:
        - actions/checkout@v2, actions/cache@v2.
 
- Fore more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-tonode-20/
 
- 두번째 문제
    - build_and_depoly
- The following actions uses node12 which is deprecated and will be forced to run on node16:
        - actions/checkout@v2, actions/cache@v2.
 
- Fore more information see: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
 
해결방법
- 허무한 해결
- github action을 도입하게된 계기인 jekyll-deploy-action, github에 방문했더니…
- 대문(README.md)에 Update된 .github/workflows/build-jekyll.yml파일을 걸어놓았다
- 그냥복사해서 붙여넣기 했더니 해결되었다