Skip to content

Commit e4d94f1

Browse files
committed
[SVLS-8378] update yarn in all places
1 parent 61ffbee commit e4d94f1

8 files changed

Lines changed: 6869 additions & 4799 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
with:
1616
node-version: 24
1717

18+
- name: Set up Yarn
19+
run: corepack enable && corepack prepare yarn@4.10.3 --activate
20+
1821
- name: Cache Node modules
1922
id: cache-node-modules
2023
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
@@ -54,6 +57,9 @@ jobs:
5457
with:
5558
node-version: ${{ matrix.node-version }}
5659

60+
- name: Set up Yarn
61+
run: corepack enable && corepack prepare yarn@4.10.3 --activate
62+
5763
- name: Cache Node modules
5864
id: cache-node-modules
5965
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1

.github/workflows/integration_tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
with:
1616
node-version: 24
1717

18+
- name: Set up Yarn
19+
run: corepack enable && corepack prepare yarn@4.10.3 --activate
20+
1821
- name: Cache Node modules
1922
id: cache-node-modules
2023
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1

.github/workflows/monitor_api_integration_test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
with:
2020
node-version: 24
2121

22+
- name: Set up Yarn
23+
run: corepack enable && corepack prepare yarn@4.10.3 --activate
24+
2225
- name: Cache Node modules
2326
id: cache-node-modules
2427
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,11 @@ package-lock.json
99
test_forwarder_snapshot.json
1010
test_extension_snapshot.json
1111
test_extension_apigateway.json
12-
.node-version
12+
.node-version
13+
.pnp.*
14+
.yarn/*
15+
!.yarn/patches
16+
!.yarn/plugins
17+
!.yarn/releases
18+
!.yarn/sdks
19+
!.yarn/versions

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ We love pull requests. Here's a quick guide.
99
yarn install
1010
```
1111
1. Make your changes.
12-
1. Test your changes against your own testing application with the help of [`yarn link`](https://classic.yarnpkg.com/en/docs/cli/link/):
12+
1. Test your changes against your own testing application with the help of [`yarn link`](https://yarnpkg.com/cli/link):
1313
```bash
1414
# From the root of the serverless-plugin-datadog repo
1515
yarn build

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@
6363
"peerDependencies": {
6464
"serverless": "4.x || 3.x || 2.x || 1.x"
6565
},
66-
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
66+
"packageManager": "yarn@4.10.3"
6767
}

yarn.lock

Lines changed: 6846 additions & 4796 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)