From 39ac1718ad7816b59c7a5946657043b2397f48f6 Mon Sep 17 00:00:00 2001 From: Jason Johnston Date: Fri, 24 Jul 2026 11:30:34 -0400 Subject: [PATCH 1/2] Removed feed and upped cooldown on Dependabot --- .github/dependabot.yml | 9 +++++---- .npmrc | 1 - 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 .npmrc diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2f2dc9bb..0aa3cff9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,6 +2,7 @@ # package ecosystems to update and where the package manifests are located. # Please see the documentation for all configuration options: # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +# cSpell:ignore cooldown version: 2 updates: @@ -9,11 +10,11 @@ updates: directory: /user-auth/graphtutorial # Location of package manifests schedule: interval: weekly + cooldown: + default-days: 7 - package-ecosystem: npm directory: /app-auth/graphapponlytutorial # Location of package manifests schedule: interval: weekly -registries: - microsoft-proxy: - type: npm-registry - url: https://packagefeedproxy.microsoft.io/npm/ + cooldown: + default-days: 7 diff --git a/.npmrc b/.npmrc deleted file mode 100644 index 0af11863..00000000 --- a/.npmrc +++ /dev/null @@ -1 +0,0 @@ -registry=https://packagefeedproxy.microsoft.io/npm/ From c141231e12aa4b40c1834330d55e2fb5f476bbf7 Mon Sep 17 00:00:00 2001 From: Jason Johnston Date: Fri, 24 Jul 2026 11:34:26 -0400 Subject: [PATCH 2/2] Remove Node 20 from builds --- .github/workflows/nodejs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 945deda7..7d1db22b 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: - node-version: [ 20.x, 22.x, 24.x ] + node-version: [ 22.x, 24.x ] steps: - uses: actions/checkout@v3 @@ -44,7 +44,7 @@ jobs: strategy: matrix: - node-version: [ 20.x, 22.x, 24.x ] + node-version: [ 22.x, 24.x ] steps: - uses: actions/checkout@v3