Skip to content

chore: update CI runners #17326

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

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
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
yeah 3
  • Loading branch information
deansheather committed Apr 10, 2025
commit abe4fe7e9da82876340a8d6a1e47e830cb1e8e02
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ jobs:
# because it contains some important files for the workflow.
$runnerTemp = "R:\tmp"
New-Item -ItemType Directory -Path $runnerTemp -Force
Copy-Item -Path $env:RUNNER_TEMP -Destination $runnerTemp -Force -Recurse
Copy-Item -Path "$($env:RUNNER_TEMP)\*" -Destination $runnerTemp -Force -Recurse
# Move to .old so we don't need to waste I/O deleting it.
Move-Item -Path $env:RUNNER_TEMP -Destination "$($env:RUNNER_TEMP).old" -Force
# Create a symbolic link from the old path to the new path. You can't
Expand Down
Loading