Skip to content

ci: use free GH arm runners #47872

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 13 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
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
Prev Previous commit
Next Next commit
this makes no sense
  • Loading branch information
jkleinsc committed Aug 8, 2025
commit fa0896fec950fe21a2e49f8ebf3ba470de89ad8f
4 changes: 3 additions & 1 deletion .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ runs:
which node
node --version
node src/electron/script/yarn cache dir > yarn-cache-dir.txt
echo "dir=$(cat yarn-cache-dir.txt)" >> $GITHUB_OUTPUT
cat yarn-cache-dir.txt
export YARN_CACHE_DIR=$(cat yarn-cache-dir.txt)
echo "dir=$YARN_CACHE_DIR" >> $GITHUB_OUTPUT
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
id: yarn-cache
with:
Expand Down