We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ffd910 commit 974232fCopy full SHA for 974232f
.github/workflows/ci.yml
@@ -33,6 +33,11 @@ jobs:
33
java: [ '17', '25' ]
34
os: [ 'ubuntu-24.04', 'windows-latest' ]
35
steps:
36
+ - name: Use faster temporary storage (Windows)
37
+ if: runner.os == 'Windows'
38
+ run: |
39
+ echo "TMP=$env:RUNNER_TEMP" | Out-File $env:GITHUB_ENV -Encoding utf8 -Append
40
+ echo "TEMP=$env:RUNNER_TEMP" | Out-File $env:GITHUB_ENV -Encoding utf8 -Append
41
- name: Checkout code
42
uses: actions/checkout@v5
43
with:
0 commit comments