Skip to content
Open
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/test-cross-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
working-directory: sentry-react-native
run: npm i -g corepack

- uses: actions/setup-node@v5
- uses: actions/setup-node@v6
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Node Setup Action Caching Issue

The actions/setup-node@v6 upgrade limits automatic caching to npm only. Since this workflow uses cache: "yarn", the caching may silently fail or not work, potentially causing slower CI runs or build failures.

Fix in Cursor Fix in Web

with:
node-version: 18
cache: "yarn"
Expand Down
Loading