Skip to content

Commit 820d913

Browse files
authored
Merge pull request #23 from siropkin/develop
Fix "No space left on device" in build job
2 parents de25ff1 + 817c9c4 commit 820d913

File tree

2 files changed

+27
-16
lines changed

2 files changed

+27
-16
lines changed

.github/workflows/build.yml

+23-12
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ jobs:
3636
pluginVerifierHomeDir: ${{ steps.properties.outputs.pluginVerifierHomeDir }}
3737
steps:
3838

39+
# Free GitHub Actions Environment Disk Space
40+
- name: Maximize Build Space
41+
uses: jlumbroso/free-disk-space@v1.3.1
42+
with:
43+
tool-cache: false
44+
large-packages: false
45+
3946
# Check out the current repository
4047
- name: Fetch Sources
4148
uses: actions/checkout@v4
@@ -53,9 +60,7 @@ jobs:
5360

5461
# Setup Gradle
5562
- name: Setup Gradle
56-
uses: gradle/actions/setup-gradle@v3
57-
with:
58-
gradle-home-cache-cleanup: true
63+
uses: gradle/actions/setup-gradle@v4
5964

6065
# Set environment variables
6166
- name: Export Properties
@@ -102,6 +107,13 @@ jobs:
102107
runs-on: ubuntu-latest
103108
steps:
104109

110+
# Free GitHub Actions Environment Disk Space
111+
- name: Maximize Build Space
112+
uses: jlumbroso/free-disk-space@v1.3.1
113+
with:
114+
tool-cache: false
115+
large-packages: false
116+
105117
# Check out the current repository
106118
- name: Fetch Sources
107119
uses: actions/checkout@v4
@@ -115,9 +127,7 @@ jobs:
115127

116128
# Setup Gradle
117129
- name: Setup Gradle
118-
uses: gradle/actions/setup-gradle@v3
119-
with:
120-
gradle-home-cache-cleanup: true
130+
uses: gradle/actions/setup-gradle@v4
121131

122132
# Run tests
123133
- name: Run Tests
@@ -150,14 +160,17 @@ jobs:
150160

151161
# Free GitHub Actions Environment Disk Space
152162
- name: Maximize Build Space
153-
uses: jlumbroso/free-disk-space@main
163+
uses: jlumbroso/free-disk-space@v1.3.1
154164
with:
155165
tool-cache: false
156166
large-packages: false
157167

158168
# Check out the current repository
159169
- name: Fetch Sources
160170
uses: actions/checkout@v4
171+
with:
172+
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
173+
fetch-depth: 0 # a full history is required for pull request analysis
161174

162175
# Set up Java environment for the next steps
163176
- name: Setup Java
@@ -168,7 +181,7 @@ jobs:
168181

169182
# Run Qodana inspections
170183
- name: Qodana - Code Inspection
171-
uses: JetBrains/qodana-action@v2024.1.5
184+
uses: JetBrains/qodana-action@v2024.2
172185
with:
173186
cache-default-branch-only: true
174187

@@ -181,7 +194,7 @@ jobs:
181194

182195
# Free GitHub Actions Environment Disk Space
183196
- name: Maximize Build Space
184-
uses: jlumbroso/free-disk-space@main
197+
uses: jlumbroso/free-disk-space@v1.3.1
185198
with:
186199
tool-cache: false
187200
large-packages: false
@@ -199,9 +212,7 @@ jobs:
199212

200213
# Setup Gradle
201214
- name: Setup Gradle
202-
uses: gradle/actions/setup-gradle@v3
203-
with:
204-
gradle-home-cache-cleanup: true
215+
uses: gradle/actions/setup-gradle@v4
205216

206217
# Cache Plugin Verifier IDEs
207218
- name: Setup Plugin Verifier IDEs Cache

CHANGELOG.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
## [Unreleased]
44

55

6-
## [1.4.0] - 2024-11-04
6+
## [1.4.0]
77
### Changed
8-
- #18: Added support for "Squirrel Method" (Chinese) (https://rime.im) on macOS.
9-
- #20: Added support for "Russian - PC" on macOS.
10-
- #21: Fixed color settings save bug; color settings now save correctly.
8+
- #18 Added support for "Squirrel Method" (Chinese) (https://rime.im) on macOS.
9+
- #20 Added support for "Russian - PC" on macOS.
10+
- #21 Fixed color settings save bug; color settings now save correctly.
1111

1212

1313
## [1.3.1] - 2024-08-26

0 commit comments

Comments
 (0)