4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

github actionでimagemagick / terraformが見つからずエラーになる

Last updated at Posted at 2025-01-16

追記

terraformも同様にubuntu24から削除されておりエラーになっていました。
terraform: command not found

こちらも以下でterraformをinstallすることによって解消しました。

背景

github actionでCIを回していたら急にエラーが発生した

     MiniMagick::Error:
       You must have ImageMagick or GraphicsMagick installed

対応

手動でImageMagickをインストールするか、ubuntu22でバージョンを固定する。
基本前者が良さそう。

actionがすでにあったのでこちらを利用

      - name: install imagemagick
        uses: mfinelli/setup-imagemagick@v6

なぜ発生した?

github actionのubuntuイメージで22->24に上がる際にImageMagickが削除されていた。
github actionのrunnerでubuntu:latestを指定していたので24のイメージになったタイミングでCIが落ち始めた。

ubuntu22
https://github.com/actions/runner-images/blob/ubuntu24/20250113.1/images/ubuntu/Ubuntu2204-Readme.md

ubuntu24
https://github.com/actions/runner-images/blob/ubuntu24/20250113.1/images/ubuntu/Ubuntu2404-Readme.md

4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?