From 261401dfb7419d24d3a38c9eb957181f071bb9e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Dec 2022 08:44:28 +0000 Subject: [PATCH 1/2] Bump which from 2.0.2 to 3.0.0 Bumps [which](https://github.com/npm/node-which) from 2.0.2 to 3.0.0. - [Release notes](https://github.com/npm/node-which/releases) - [Changelog](https://github.com/npm/node-which/blob/main/CHANGELOG.md) - [Commits](https://github.com/npm/node-which/compare/v2.0.2...v3.0.0) --- updated-dependencies: - dependency-name: which dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 177612c4..7c104ab9 100644 --- a/package.json +++ b/package.json @@ -590,7 +590,7 @@ "lru-cache": "^7.14.0", "ts-pattern": "^4.0.5", "vscode-languageclient": "^7.0.0", - "which": "^2.0.1", + "which": "^3.0.0", "yauzl": "^2.10.0" } } diff --git a/yarn.lock b/yarn.lock index f8bc1cc7..d28a3376 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2571,6 +2571,13 @@ which@^2.0.1: dependencies: isexe "^2.0.0" +which@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/which/-/which-3.0.0.tgz#a9efd016db59728758a390d23f1687b6e8f59f8e" + integrity sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ== + dependencies: + isexe "^2.0.0" + wildcard@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec" From 5084138ae1699ca4f66bc8f49cb7447c1cd35078 Mon Sep 17 00:00:00 2001 From: Fendor Date: Mon, 5 Dec 2022 09:50:59 +0100 Subject: [PATCH 2/2] Bump node version in CI --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9e2e62d9..f3deae03 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: 17 + node-version: latest - name: Upgrade ghcup run: ghcup upgrade -i -f shell: bash