Skipping cache - error checking storage: error fetching info: RequestError: send request failed

I have this error during saving caches:

Skipping cache - error checking storage: error fetching info: RequestError: send request failed
caused by: Head https://circle-production-customer-artifacts.s3.amazonaws.com/picard/5c3b050e2c85820001d91a8e/global/caches/npm-cache-XwztBxzHG2JmsFYg7Ie6VSK8gGCcV_kFpk7NgtxjgeM%3D.tar.gz: x509: failed to load system roots and no roots provided

this is my config.yml

version: 2
jobs:
  install:
    working_directory: ~/angular-7-electron-orm-npm
    docker:
    - image: node:lts-alpine
    steps:
    - checkout
    - run: npm install
    - save_cache:
        key: npm-cache-{{ checksum "package.json" }}
        paths:
        - ~/npm-cahce
  build_linux:
    working_directory: ~/angular-7-electron-orm-linux
    docker:
    - image: electronuserland/builder:latest
    steps:
    - checkout
    - restore_cache:
        key: npm-cache-{{ checksum "package.json" }}
    - run: npm run electron:linux
    - store_artifacts:
        path: app-builds
        destination: builds-linux
  build_windows:
    working_directory: ~/angular-7-electron-orm-windows
    docker:
    - image: electronuserland/builder:wine-mono
    steps:
    - checkout
    - restore_cache:
        key: npm-cache-{{ checksum "package.json" }}
    - run: npm run electron:windows
    - store_artifacts:
        path: app-builds
        destination: builds-windows
workflows:
  version: 2
  workflow:
    jobs:
    - install
    - hold:
        type: approval
        requires:
        - install
    - build_linux:
        requires:
        - hold
    - build_windows:
        requires:
        - hold

where did I go wrong?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.