GitHub Pages Deploy Fix after v3 Deprecation

GitHub Pages Deploy Fix after v3 Deprecation

I recently fixed my GitHub Pages workflow for the Chirpy Jekyll Theme after encountering a build failure. This issue was caused by the deprecation of actions/upload-artifact v3, which GitHub announced w.e.f. January 30, 2025. 1. Updated Action Versions To stay up to date, I updated my actions to the latest versions: actions/checkout@v4 actions/configure-pages@v4 actions/upload-pages-artifact@v3 2. Fixed htmlproofer Command The htmlproofer command needed an update due to the removal of the --ignore-urls option. Here’s the fixed command: ...

January 30, 2025 · 2 min · Faisal Darbar