2
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?

Run actions/setup-node@v2でError: Cache service responded with 400と出力される

2
Posted at

はじめに

firebaseを使用したCI/CD構築の際、エラーが出た。解決する。

問題

Error: Cache service responded with 400

解決方法

setup-node@v2 ではなく setup-node@v4 を使用することでエラーはなくなる。

      - name: Checkout code
        uses: actions/checkout@v4
      - name: Setup Node.js
        uses: actions/setup-node@v4

今度こそうまくいった。
しかしほかのエラーも残っていた。

おわりに

Verにはきをつける

参考

2
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
2
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?