From 3b5f729d336d4526903d40a95bb3dcbdf9f5e904 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Tue, 1 Feb 2022 10:11:04 +0000 Subject: [PATCH 1/2] build: reduce dependabot update frequency (#178) --- .github/dependabot.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5e48d4e..dfa7fa6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,12 +1,13 @@ version: 2 updates: - - package-ecosystem: github-actions - directory: '/' + - package-ecosystem: "github-actions" + directory: "/" schedule: - interval: daily + interval: "monthly" open-pull-requests-limit: 10 - - package-ecosystem: npm - directory: '/' + + - package-ecosystem: "npm" + directory: "/" schedule: - interval: daily + interval: "weekly" open-pull-requests-limit: 10 From 46781cc6cf826d3c2fc0494b07a02395125a7fbf Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Tue, 1 Feb 2022 21:16:31 +0000 Subject: [PATCH 2/2] ci: use major versions of github actions (#179) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d409ac7..05c06ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,9 +24,9 @@ jobs: - ubuntu-latest - windows-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v2 - name: Use Node.js - uses: actions/setup-node@v2.5.1 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - name: Install Dependencies