Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/create-release-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: "git branch --track main origin/main"

- name: Setup node
uses: "actions/setup-node@v3"
uses: "actions/setup-node@v4"
env:
SKIP_YARN_COREPACK_CHECK: true
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: "Checkout"
uses: "actions/checkout@v3"
- name: "Setup Node"
uses: "actions/setup-node@v3"
uses: "actions/setup-node@v4"
env:
SKIP_YARN_COREPACK_CHECK: true
with:
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/test-release-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fetch-depth: 2

- name: "Setup Node"
uses: "actions/setup-node@v3"
uses: "actions/setup-node@v4"
env:
SKIP_YARN_COREPACK_CHECK: true
with:
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
ref: ${{ needs.update-lock-file.outputs.VERIFIED_LOCK_COMMIT }}

- name: "Setup Node v${{ matrix.node-version }}"
uses: "actions/setup-node@v3"
uses: "actions/setup-node@v4"
env:
SKIP_YARN_COREPACK_CHECK: true
with:
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
ref: ${{ needs.update-lock-file.outputs.VERIFIED_LOCK_COMMIT }}

- name: "Setup Node v${{ matrix.node-version }}"
uses: "actions/setup-node@v3"
uses: "actions/setup-node@v4"
env:
SKIP_YARN_COREPACK_CHECK: true
with:
Expand Down Expand Up @@ -166,11 +166,13 @@ jobs:
uses: actions/checkout@v3

- name: "Setup Node"
uses: "actions/setup-node@v3"
uses: "actions/setup-node@v4"
env:
SKIP_YARN_COREPACK_CHECK: true
with:
node-version-file: ".nvmrc"
# npm trusted publishing requires node >=22.14.0
node-version: "24"
registry-url: "https://registry.npmjs.org"

- name: Install dependencies with yarn cache
uses: ./.github/actions/yarn-nm-install
Expand All @@ -185,7 +187,6 @@ jobs:
publish: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

# If the Version Packages PR has been created in the changesets step we should check if our workspace
# package.json files have been updated from dependency bumps and update the lock file if so:
Expand Down