From 6d66406508cf4db40708945e9b6f84c100f8056e Mon Sep 17 00:00:00 2001 From: Alexander Bukhalo Date: Wed, 24 Aug 2022 14:51:12 +0300 Subject: [PATCH 1/3] dependabot configuration file added --- dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 dependabot.yml diff --git a/dependabot.yml b/dependabot.yml new file mode 100644 index 0000000..101d871 --- /dev/null +++ b/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 +updates: + - package-ecosystem: 'npm' + directory: '/' + schedule: + interval: 'daily' + ignore: + - dependency-name: 'typescript' From d79fa34178a28732e151b82695a08decffd5c80d Mon Sep 17 00:00:00 2001 From: Alexander Bukhalo Date: Wed, 24 Aug 2022 14:54:36 +0300 Subject: [PATCH 2/3] use actual nodejs versions for CI, fix dependabot file location --- .github/dependabot.yml | 2 ++ .github/workflows/build-test.yml | 6 +++--- dependabot.yml | 8 -------- 3 files changed, 5 insertions(+), 11 deletions(-) delete mode 100644 dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 122534f..101d871 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,5 @@ updates: directory: '/' schedule: interval: 'daily' + ignore: + - dependency-name: 'typescript' diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 9fa05dd..c78b335 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -2,9 +2,9 @@ name: Build & Test on: push: - branches: [master] + branches: [main] pull_request: - branches: [master] + branches: [main] jobs: build: @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [14.x, 15.x] + node-version: [16.x, 18.x] steps: - uses: actions/checkout@v2 diff --git a/dependabot.yml b/dependabot.yml deleted file mode 100644 index 101d871..0000000 --- a/dependabot.yml +++ /dev/null @@ -1,8 +0,0 @@ -version: 2 -updates: - - package-ecosystem: 'npm' - directory: '/' - schedule: - interval: 'daily' - ignore: - - dependency-name: 'typescript' From f24c684e8782324f58c56e0dbf77760cd9f7f071 Mon Sep 17 00:00:00 2001 From: Alexander Bukhalo Date: Wed, 24 Aug 2022 15:00:33 +0300 Subject: [PATCH 3/3] lock `typedoc` package version --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 101d871..aba7845 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,3 +6,4 @@ updates: interval: 'daily' ignore: - dependency-name: 'typescript' + - dependency-name: 'typedoc'