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点修正します。

  1. uses: withastro/action@v1uses: withastro/action@v2 に変更
  2. uses: actions/deploy-pages@v1uses: actions/deploy-pages@v4 に変更

以上で再度デプロイが走るようになりました。

Vite + TanStack Router - 8. その他の便利な機能
Vite@5以降 + TypeScriptでパスエイリアスを設定する方法