Skip to content

Update cidrs.json

Update cidrs.json #332

Workflow file for this run

name: Update cidrs.json
# Runs nightly and manually
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
update_generated_files:
name: Update automatically generated files
runs-on: ubuntu-latest
steps:
- uses: mongodb-js/devtools-shared/actions/setup-bot-token@main
id: app-token
with:
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }}
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
# don't checkout a detatched HEAD
ref: ${{ github.head_ref }}
token: ${{ steps.app-token.outputs.token }}
- uses: actions/setup-node@v4
with:
node-version: ^20.x
cache: "npm"
- name: Install Dependencies
run: |
npm -v
npm ci
# make sure precommit.js is compiled
npm run bootstrap-ci -- --scope @mongodb-js/monorepo-tools --stream --include-dependencies
- name: Update cidrs.json
run: npm run -w packages/mongodb-cloud-info update-cidrs
- name: Commit and push
run: |
git add resources/cidrs.json
git commit --no-allow-empty -m "chore: update cidrs.json [skip ci]" || true
git push