Skip to content

Commit 8454963

Browse files
authored
chore: update dependencies (#44)
2 parents c9f3137 + a4101dc commit 8454963

File tree

46 files changed

+18419
-18783
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+18419
-18783
lines changed

.github/workflows/audit.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
key: ${{ runner.os }}-${{ hashFiles('meteor/yarn.lock') }}-${{ hashFiles('meteor/.meteor/release') }}
2828
- name: Validate production dependencies for vulnerabilities and compatible licenses
2929
run: |
30+
corepack enable
31+
3032
yarn
3133
cd meteor
3234
yarn validate:prod-dependencies
@@ -55,6 +57,8 @@ jobs:
5557
key: ${{ runner.os }}-${{ hashFiles('meteor/yarn.lock') }}-${{ hashFiles('meteor/.meteor/release') }}
5658
- name: Validate production dependencies for vulnerabilities and compatible licenses
5759
run: |
60+
corepack enable
61+
5862
yarn
5963
cd meteor
6064
yarn run validate:all-dependencies
@@ -88,6 +92,8 @@ jobs:
8892
node-version-file: ".node-version"
8993
- name: Prepare Environment
9094
run: |
95+
corepack enable
96+
9197
cd packages
9298
yarn install
9399
env:
@@ -119,6 +125,8 @@ jobs:
119125
node-version-file: ".node-version"
120126
- name: Prepare Environment
121127
run: |
128+
corepack enable
129+
122130
cd packages
123131
yarn install
124132
env:

.github/workflows/node.yaml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ jobs:
3434
key: ${{ runner.os }}-${{ hashFiles('yarn.lock', 'meteor/yarn.lock', 'meteor/.meteor/release', 'packages/yarn.lock') }}
3535
- name: Prepare Environment
3636
run: |
37+
corepack enable
38+
3739
yarn config set cacheFolder /home/runner/lint-core-cache
3840
yarn
3941
yarn build:packages
@@ -73,6 +75,8 @@ jobs:
7375
key: ${{ runner.os }}-${{ hashFiles('yarn.lock', 'meteor/yarn.lock', 'meteor/.meteor/release', 'packages/yarn.lock') }}
7476
- name: Prepare Environment
7577
run: |
78+
corepack enable
79+
7680
yarn config set cacheFolder /home/runner/test-core-cache
7781
yarn
7882
yarn build:packages
@@ -174,6 +178,8 @@ jobs:
174178
- name: Prepare Environment
175179
if: steps.check-build-and-push.outputs.enable == 'true'
176180
run: |
181+
corepack enable
182+
177183
yarn install
178184
- name: Build libs
179185
if: steps.check-build-and-push.outputs.enable == 'true'
@@ -348,6 +354,8 @@ jobs:
348354
- name: Build
349355
if: steps.check-build-and-push.outputs.enable == 'true'
350356
run: |
357+
corepack enable
358+
351359
cd packages
352360
yarn install
353361
yarn lerna run --scope \*\*/${{ matrix.gateway-name }} --include-dependencies --stream build
@@ -455,6 +463,8 @@ jobs:
455463
key: ${{ runner.os }}-${{ hashFiles('packages/yarn.lock') }}
456464
- name: Prepare Environment
457465
run: |
466+
corepack enable
467+
458468
cd packages
459469
yarn config set cacheFolder /home/runner/${{ matrix.package-name }}-cache
460470
yarn install
@@ -524,6 +534,8 @@ jobs:
524534
key: ${{ runner.os }}-${{ hashFiles('packages/yarn.lock') }}
525535
- name: Prepare Environment
526536
run: |
537+
corepack enable
538+
527539
cd packages
528540
yarn config set cacheFolder /home/runner/test-packages-cache
529541
yarn install
@@ -556,6 +568,8 @@ jobs:
556568
node-version-file: ".node-version"
557569
- name: Prepare Environment
558570
run: |
571+
corepack enable
572+
559573
cd packages
560574
yarn
561575
env:
@@ -582,6 +596,8 @@ jobs:
582596
node-version-file: ".node-version"
583597
- name: Prepare Environment
584598
run: |
599+
corepack enable
600+
585601
cd packages
586602
yarn
587603
env:
@@ -622,10 +638,12 @@ jobs:
622638
key: ${{ runner.os }}-${{ hashFiles('packages/yarn.lock') }}
623639
- name: Prepare Environment
624640
run: |
641+
corepack enable
642+
625643
cd packages
626644
yarn config set cacheFolder /home/runner/publish-docs-cache
627645
yarn install
628-
yarn build
646+
yarn build:all
629647
env:
630648
CI: true
631649
- name: Run docusaurus
@@ -671,6 +689,8 @@ jobs:
671689
node-version-file: ".node-version"
672690
- name: Prepare Environment # have to run this first to make sure the semver lib is available
673691
run: |
692+
corepack enable
693+
674694
yarn config set cacheFolder /home/runner/release-libs-cache
675695
676696
cd packages
@@ -755,6 +775,8 @@ jobs:
755775
key: ${{ runner.os }}-${{ hashFiles('yarn.lock', 'meteor/yarn.lock', 'meteor/.meteor/release', 'packages/yarn.lock') }}
756776
- name: Prepare Environment
757777
run: |
778+
corepack enable
779+
758780
yarn config set cacheFolder /home/runner/check-for-multiple-library-versions-cache
759781
yarn
760782
env:

.github/workflows/prerelease-libs.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
node-version-file: ".node-version"
3030
- name: Prepare Environment
3131
run: |
32+
corepack enable
33+
3234
cd packages
3335
yarn install
3436
yarn lerna run --scope \*\*/${{ matrix.package-name }} --include-dependencies --stream build
@@ -65,6 +67,8 @@ jobs:
6567
node-version: ${{ matrix.node-version }}
6668
- name: Prepare Environment
6769
run: |
70+
corepack enable
71+
6872
cd packages
6973
yarn install
7074
yarn lerna run --scope \*\*/${{ matrix.package-name }} --include-dependencies --stream build
@@ -105,6 +109,8 @@ jobs:
105109
- name: Prepare Environment
106110
if: ${{ steps.do-publish.outputs.publish }}
107111
run: |
112+
corepack enable
113+
108114
cd packages
109115
yarn install
110116
env:

.github/workflows/sonar.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ jobs:
3737
key: ${{ runner.os }}-${{ hashFiles('yarn.lock', 'meteor/yarn.lock', 'meteor/.meteor/release', 'packages/yarn.lock') }}
3838
- name: Prepare Environment
3939
run: |
40+
corepack enable
41+
4042
yarn
4143
yarn build:packages
4244
env:

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 0 additions & 541 deletions
This file was deleted.

.yarn/plugins/@yarnpkg/plugin-version.cjs

Lines changed: 0 additions & 550 deletions
This file was deleted.

.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

Lines changed: 0 additions & 28 deletions
This file was deleted.

.yarn/releases/yarn-3.5.0.cjs

Lines changed: 0 additions & 873 deletions
This file was deleted.

.yarnrc.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1 @@
11
nodeLinker: node-modules
2-
3-
plugins:
4-
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
5-
spec: "@yarnpkg/plugin-workspace-tools"
6-
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs
7-
spec: "@yarnpkg/plugin-version"
8-
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
9-
spec: "@yarnpkg/plugin-interactive-tools"
10-
11-
yarnPath: .yarn/releases/yarn-3.5.0.cjs

meteor/.yarnrc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
nodeLinker: node-modules
2-
# meteor's isobuild is incredibly picky and requires the deep node_modules structure for some packages
31
nmHoistingLimits: dependencies
2+
3+
nodeLinker: node-modules

0 commit comments

Comments
 (0)