From 6e0b5287f0c54d6b8612733f95afcb35d22e0fb1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 12:11:31 +0000 Subject: [PATCH 1/2] Bump eslint from 8.53.0 to 8.54.0 in /webapp Bumps [eslint](https://github.com/eslint/eslint) from 8.53.0 to 8.54.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.53.0...v8.54.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- webapp/package.json | 2 +- webapp/yarn.lock | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/webapp/package.json b/webapp/package.json index bd40cb4d7..6b72eb10f 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -39,7 +39,7 @@ "@types/react-dom": "^18.2.14", "@typescript-eslint/eslint-plugin": "^6.11.0", "@typescript-eslint/parser": "^6.9.0", - "eslint": "^8.53.0", + "eslint": "^8.54.0", "prettier": "^3.1.0", "react-scripts": "^5.0.1", "serve": "^14.2.1", diff --git a/webapp/yarn.lock b/webapp/yarn.lock index 4eedf8af1..e66e9ceba 100644 --- a/webapp/yarn.lock +++ b/webapp/yarn.lock @@ -1394,10 +1394,10 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.53.0": - version "8.53.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.53.0.tgz#bea56f2ed2b5baea164348ff4d5a879f6f81f20d" - integrity sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w== +"@eslint/js@8.54.0": + version "8.54.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.54.0.tgz#4fab9a2ff7860082c304f750e94acd644cf984cf" + integrity sha512-ut5V+D+fOoWPgGGNj83GGjnntO39xDy6DWxO0wb7Jp3DcMX0TfIqdzHF85VTQkerdyGmuuMD9AKAo5KiNlf/AQ== "@floating-ui/core@^1.3.1": version "1.3.1" @@ -5648,15 +5648,15 @@ eslint-webpack-plugin@^3.1.1: normalize-path "^3.0.0" schema-utils "^4.0.0" -eslint@^8.3.0, eslint@^8.53.0: - version "8.53.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.53.0.tgz#14f2c8244298fcae1f46945459577413ba2697ce" - integrity sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag== +eslint@^8.3.0, eslint@^8.54.0: + version "8.54.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.54.0.tgz#588e0dd4388af91a2e8fa37ea64924074c783537" + integrity sha512-NY0DfAkM8BIZDVl6PgSa1ttZbx3xHgJzSNJKYcQglem6CppHyMhRIQkBVSSMaSRnLhig3jsDbEzOjwCVt4AmmA== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.6.1" "@eslint/eslintrc" "^2.1.3" - "@eslint/js" "8.53.0" + "@eslint/js" "8.54.0" "@humanwhocodes/config-array" "^0.11.13" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" From 7e6c507a3f61365373e19c9b1482262b038a8cd1 Mon Sep 17 00:00:00 2001 From: Mollie Munoz Date: Mon, 20 Nov 2023 15:07:15 -0800 Subject: [PATCH 2/2] Unfreeze lock file to update it --- .github/workflows/copilot-build-frontend.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/copilot-build-frontend.yml b/.github/workflows/copilot-build-frontend.yml index 9a5b5b577..2f0c4d2b2 100644 --- a/.github/workflows/copilot-build-frontend.yml +++ b/.github/workflows/copilot-build-frontend.yml @@ -29,7 +29,7 @@ jobs: #!/usr/bin/env bash set -e # exit with nonzero exit code if anything fails echo "Running yarn install, yarn build, & yarn format" - yarn install --frozen-lockfile # install dependencies and ensure lockfile is unchanged. + yarn install #--frozen-lockfile # install dependencies and ensure lockfile is unchanged. yarn build # run build script yarn format # run format script working-directory: webapp