Skip to content

Commit fd632a2

Browse files
committed
Merge branch 'release/1.2.22'
2 parents 3beae2f + ab258b1 commit fd632a2

File tree

7 files changed

+38
-32
lines changed

7 files changed

+38
-32
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -45,22 +45,22 @@ jobs:
4545
4646
# Check out current repository
4747
- name: Fetch Sources
48-
uses: actions/checkout@v3.5.3
48+
uses: actions/checkout@v4.1.0
4949

5050
# Validate wrapper
5151
- name: Gradle Wrapper Validation
5252
uses: gradle/wrapper-validation-action@v1.1.0
5353

5454
# Setup Java environment for the next steps
5555
- name: Setup Java
56-
uses: actions/setup-java@v3.12.0
56+
uses: actions/setup-java@v3.13.0
5757
with:
5858
distribution: zulu
5959
java-version: 17
6060

6161
# Setup Gradle
6262
- name: Setup Gradle
63-
uses: gradle/gradle-build-action@v2.7.0
63+
uses: gradle/gradle-build-action@v2.9.0
6464

6565
# Set environment variables
6666
- name: Export Properties
@@ -109,7 +109,7 @@ jobs:
109109
110110
# Store already-built plugin as an artifact for downloading
111111
- name: Upload artifact
112-
uses: actions/upload-artifact@v3.1.2
112+
uses: actions/upload-artifact@v3.1.3
113113
with:
114114
name: ${{ steps.artifact.outputs.filename }}
115115
path: ./build/distributions/content/*/*
@@ -123,18 +123,18 @@ jobs:
123123

124124
# Check out current repository
125125
- name: Fetch Sources
126-
uses: actions/checkout@v3.5.3
126+
uses: actions/checkout@v4.1.0
127127

128128
# Setup Java environment for the next steps
129129
- name: Setup Java
130-
uses: actions/setup-java@v3.12.0
130+
uses: actions/setup-java@v3.13.0
131131
with:
132132
distribution: zulu
133133
java-version: 17
134134

135135
# Setup Gradle
136136
- name: Setup Gradle
137-
uses: gradle/gradle-build-action@v2.7.0
137+
uses: gradle/gradle-build-action@v2.9.0
138138

139139
# Run tests
140140
- name: Run Tests
@@ -143,7 +143,7 @@ jobs:
143143
# Collect Tests Result of failed tests
144144
- name: Collect Tests Result
145145
if: ${{ failure() }}
146-
uses: actions/upload-artifact@v3.1.2
146+
uses: actions/upload-artifact@v3.1.3
147147
with:
148148
name: tests-result
149149
path: ${{ github.workspace }}/build/reports/tests
@@ -167,18 +167,18 @@ jobs:
167167

168168
# Check out current repository
169169
- name: Fetch Sources
170-
uses: actions/checkout@v3.5.3
170+
uses: actions/checkout@v4.1.0
171171

172172
# Setup Java environment for the next steps
173173
- name: Setup Java
174-
uses: actions/setup-java@v3.12.0
174+
uses: actions/setup-java@v3.13.0
175175
with:
176176
distribution: zulu
177177
java-version: 17
178178

179179
# Run Qodana inspections
180180
- name: Qodana - Code Inspection
181-
uses: JetBrains/qodana-action@v2023.2.1
181+
uses: JetBrains/qodana-action@v2023.2.6
182182
with:
183183
cache-default-branch-only: true
184184

@@ -196,22 +196,22 @@ jobs:
196196
197197
# Check out current repository
198198
- name: Fetch Sources
199-
uses: actions/checkout@v3.5.3
199+
uses: actions/checkout@v4.1.0
200200

201201
# Setup Java environment for the next steps
202202
- name: Setup Java
203-
uses: actions/setup-java@v3.12.0
203+
uses: actions/setup-java@v3.13.0
204204
with:
205205
distribution: zulu
206206
java-version: 17
207207

208208
# Setup Gradle
209209
- name: Setup Gradle
210-
uses: gradle/gradle-build-action@v2.7.0
210+
uses: gradle/gradle-build-action@v2.9.0
211211

212212
# Cache Plugin Verifier IDEs
213213
- name: Setup Plugin Verifier IDEs Cache
214-
uses: actions/cache@v3.3.1
214+
uses: actions/cache@v3.3.2
215215
with:
216216
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
217217
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
@@ -223,7 +223,7 @@ jobs:
223223
# Collect Plugin Verifier Result
224224
- name: Collect Plugin Verifier Result
225225
if: ${{ always() }}
226-
uses: actions/upload-artifact@v3.1.2
226+
uses: actions/upload-artifact@v3.1.3
227227
with:
228228
name: pluginVerifier-result
229229
path: ${{ github.workspace }}/build/reports/pluginVerifier
@@ -241,11 +241,11 @@ jobs:
241241

242242
# Check out current repository
243243
- name: Fetch Sources
244-
uses: actions/checkout@v3.5.2
244+
uses: actions/checkout@v4.1.0
245245

246246
# Setup Java environment for the next steps
247247
- name: Setup Java
248-
uses: actions/setup-java@v3.12.0
248+
uses: actions/setup-java@v3.13.0
249249
with:
250250
distribution: zulu
251251
java-version: 17

.github/workflows/changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
# Check out current repository
1818
- name: Fetch Sources
19-
uses: actions/checkout@v3.5.2
19+
uses: actions/checkout@v4.1.0
2020
with:
2121
fetch-depth: 0
2222

@@ -32,7 +32,7 @@ jobs:
3232
3333
# Generate a changelog
3434
- name: Generate a changelog
35-
uses: orhun/git-cliff-action@v2.0.6
35+
uses: orhun/git-cliff-action@v2.1.0
3636
id: git-cliff
3737
with:
3838
config: cliff.toml

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ jobs:
2020

2121
# Check out current repository
2222
- name: Fetch Sources
23-
uses: actions/checkout@v3.5.2
23+
uses: actions/checkout@v4.1.0
2424
with:
2525
ref: ${{ github.event.release.tag_name }}
2626

2727
# Setup Java environment for the next steps
2828
- name: Setup Java
29-
uses: actions/setup-java@v3.12.0
29+
uses: actions/setup-java@v3.13.0
3030
with:
3131
distribution: zulu
3232
java-version: 17
3333

3434
# Setup Gradle
3535
- name: Setup Gradle
36-
uses: gradle/gradle-build-action@v2.7.0
36+
uses: gradle/gradle-build-action@v2.9.0
3737

3838
# Publish the plugin to the Marketplace
3939
- name: Publish Plugin

.github/workflows/run-ui-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,26 +33,26 @@ jobs:
3333

3434
# Check out current repository
3535
- name: Fetch Sources
36-
uses: actions/checkout@v3.5.2
36+
uses: actions/checkout@v4.1.0
3737

3838
# Setup Java environment for the next steps
3939
- name: Setup Java
40-
uses: actions/setup-java@v3.12.0
40+
uses: actions/setup-java@v3.13.0
4141
with:
4242
distribution: zulu
4343
java-version: 17
4444

4545
# Setup Gradle
4646
- name: Setup Gradle
47-
uses: gradle/gradle-build-action@v2.7.0
47+
uses: gradle/gradle-build-action@v2.9.0
4848

4949
# Run IDEA prepared for UI testing
5050
- name: Run IDE
5151
run: ${{ matrix.runIde }}
5252

5353
# Wait for IDEA to be started
5454
- name: Health Check
55-
uses: jtalk/url-health-check-action@v3.1
55+
uses: jtalk/url-health-check-action@v3.2
5656
with:
5757
url: http://127.0.0.1:8082
5858
max-attempts: 15

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
6+
## [1.2.22] - 2023-10-09
7+
8+
### Bug Fixes
9+
10+
- Solve some minor issues and update dependencies
11+
612
## [1.2.21] - 2023-08-13
713

814
### Bug Fixes

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ pluginName = IntelliJ Nest Plugin
55
pluginRepositoryUrl = https://github.com/KartanHQ/intellij-nestjs
66

77
# SemVer format -> https://semver.org
8-
pluginVersion = 1.2.21
8+
pluginVersion = 1.2.22
99

1010
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1111
pluginSinceBuild = 222
12-
pluginUntilBuild = 232.*
12+
pluginUntilBuild = 233.*
1313

1414
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1515
platformType = IU

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
annotations = "24.0.1"
44

55
# plugins
6-
kotlin = "1.9.0"
7-
changelog = "2.1.2"
8-
gradleIntelliJPlugin = "1.15.0"
6+
kotlin = "1.9.10"
7+
changelog = "2.2.0"
8+
gradleIntelliJPlugin = "1.16.0"
99
qodana = "0.1.13"
1010
kover = "0.7.3"
1111

0 commit comments

Comments
 (0)