Astroのデプロイが Error: This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v3` で落ちる
このブログはgithub actionsを使ってデプロイしていますが、今日のログを見るとデプロイが失敗していました。
エラーの内容は以下のとおりです。
Error: This request has been automatically failed because it uses a deprecated version of
actions/upload-artifact: v3. Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
原因は withastro/deploy@v1 の内部で上記の actions/upload-artifact@v3 を使っていることのようです。
.github/workfow/deploy.yml を開き、2点修正します。
- uses: withastro/action@v1を- uses: withastro/action@v2に変更
- uses: actions/deploy-pages@v1を- uses: actions/deploy-pages@v4に変更
以上で再度デプロイが走るようになりました。