How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

How to make Renovate use AWS CodeArtifact as npm registry in AWS CodeBuild?

calendar_today September 1, 2025 person user22409631 domain amazon-codebuild

I am trying to run Renovate inside AWS CodeBuild with AWS CodeCommit (source repo) and AWS CodeArtifact (private npm registry). Here is my buildspec.yml : version: 0.2 env: shell: bash git-credential-helper: yes variables: RENOVATE_PLATFORM: ‘codecommit’ RENOVATE_REPOSITORIES: ‘[“repoName1”, “repoName2”]’ RENOVATE_CONFIG: ‘{“extends”:[“config:recommended”]}’ LOG_LEVEL: ‘debug’ AWS_REGION: ‘us-east-1’ phases: build: on-failure: CONTINUE commands: - aws codeartifact login –tool npm –domain my_domain –domain-owner 111122223333 –repository my_repo - npm install -g renovate - renovate And here

open_in_new Read original post