From 64bdbea81ebe7726406ecf4cd64e835c2c8d3214 Mon Sep 17 00:00:00 2001 From: Thugnasty777 <79833331+Thugnasty777@users.noreply.github.com> Date: Sat, 27 Mar 2021 02:26:59 -0400 Subject: [PATCH 1/4] Create deno.yml --- .github/workflows/deno.yml | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/deno.yml diff --git a/.github/workflows/deno.yml b/.github/workflows/deno.yml new file mode 100644 index 0000000..20adcc3 --- /dev/null +++ b/.github/workflows/deno.yml @@ -0,0 +1,39 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow will install Deno and run tests across stable and nightly builds on Windows, Ubuntu and macOS. +# For more information see: https://github.com/denolib/setup-deno + +name: Fetch + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + test: + runs-on: ${{ matrix.os }} # runs a test on Ubuntu, Windows and macOS + + strategy: + matrix: + deno: ["v1.x", "nightly"] + os: [macOS-latest, windows-latest, ubuntu-latest] + + steps: + - name: Setup repo + uses: actions/checkout@v2 + + - name: Setup Deno + uses: denolib/setup-deno@c7d7968ad4a59c159a777f79adddad6872ee8d96 + with: + deno-version: ${{ matrix.deno }} # tests across multiple Deno versions + + - name: Cache Dependencies + run: deno cache deps.ts + + - name: Run Tests + run: deno test -A --unstable From 3d3031d6b753f574dfae5f71f25463d0f7b6385f Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Mon, 5 Jul 2021 02:52:06 +0000 Subject: [PATCH 2/4] fix: upgrade xlsx from 0.16.9 to 0.17.0 Snyk has created this PR to upgrade xlsx from 0.16.9 to 0.17.0. See this package in npm: https://www.npmjs.com/package/xlsx See this project in Snyk: https://app.snyk.io/org/thugnasty777/project/9e1260ad-0c1b-4915-9827-07a80ce1c26d?utm_source=github&utm_medium=upgrade-pr --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5d32cca..d5ea2d3 100644 --- a/package.json +++ b/package.json @@ -69,7 +69,7 @@ "umi": "^3.2.14", "umi-request": "^1.0.8", "use-merge-value": "^1.0.1", - "xlsx": "^0.16.9" + "xlsx": "^0.17.0" }, "devDependencies": { "@ant-design/pro-cli": "^2.0.2", From 934c10307751d5f0161970505eb6e50eab29b88d Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 15 Oct 2021 23:37:08 +0000 Subject: [PATCH 3/4] fix: package.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-ANSIREGEX-1583908 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5d32cca..39efd1d 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "classnames": "^2.2.6", "crypto": "^1.0.1", "lodash": "^4.17.11", - "mocha": "^8.1.3", + "mocha": "^9.1.2", "moment": "^2.25.3", "omit.js": "^2.0.2", "path-to-regexp": "2.4.0", From d2c10f7589def8afedc38332f6798ddd7525892d Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 23 Feb 2022 00:26:41 +0000 Subject: [PATCH 4/4] fix: upgrade xlsx from 0.17.5 to 0.18.0 Snyk has created this PR to upgrade xlsx from 0.17.5 to 0.18.0. See this package in npm: https://www.npmjs.com/package/xlsx See this project in Snyk: https://app.snyk.io/org/thugnasty777/project/9e1260ad-0c1b-4915-9827-07a80ce1c26d?utm_source=github&utm_medium=referral&page=upgrade-pr --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b36dc7b..9074dbf 100644 --- a/package.json +++ b/package.json @@ -69,7 +69,7 @@ "umi": "^3.2.14", "umi-request": "^1.0.8", "use-merge-value": "^1.0.1", - "xlsx": "^0.17.0" + "xlsx": "^0.18.0" }, "devDependencies": { "@ant-design/pro-cli": "^2.0.2",