Skip to content

Commit b3ab828

Browse files
committed
Merge branch 'release/1.2.27'
2 parents 89205ad + 46c0826 commit b3ab828

File tree

7 files changed

+21
-15
lines changed

7 files changed

+21
-15
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

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

5454
# Setup Java environment for the next steps
5555
- name: Setup Java
@@ -60,7 +60,7 @@ jobs:
6060

6161
# Setup Gradle
6262
- name: Setup Gradle
63-
uses: gradle/gradle-build-action@v2.12.0
63+
uses: gradle/gradle-build-action@v3.1.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@v4.3.0
112+
uses: actions/upload-artifact@v4.3.1
113113
with:
114114
name: ${{ steps.artifact.outputs.filename }}
115115
path: ./build/distributions/content/*/*
@@ -134,7 +134,7 @@ jobs:
134134

135135
# Setup Gradle
136136
- name: Setup Gradle
137-
uses: gradle/gradle-build-action@v2.12.0
137+
uses: gradle/gradle-build-action@v3.1.0
138138

139139
# Run tests
140140
- name: Run Tests
@@ -143,14 +143,14 @@ jobs:
143143
# Collect Tests Result of failed tests
144144
- name: Collect Tests Result
145145
if: ${{ failure() }}
146-
uses: actions/upload-artifact@v4.3.0
146+
uses: actions/upload-artifact@v4.3.1
147147
with:
148148
name: tests-result
149149
path: ${{ github.workspace }}/build/reports/tests
150150

151151
# Upload Kover report to CodeCov
152152
- name: Upload Code Coverage Report
153-
uses: codecov/codecov-action@v3.1.5
153+
uses: codecov/codecov-action@v4.1.0
154154
with:
155155
files: ${{ github.workspace }}/build/reports/kover/xml/report.xml
156156

@@ -207,7 +207,7 @@ jobs:
207207

208208
# Setup Gradle
209209
- name: Setup Gradle
210-
uses: gradle/gradle-build-action@v2.12.0
210+
uses: gradle/gradle-build-action@v3.1.0
211211

212212
# Cache Plugin Verifier IDEs
213213
- name: Setup Plugin Verifier IDEs Cache
@@ -223,7 +223,7 @@ jobs:
223223
# Collect Plugin Verifier Result
224224
- name: Collect Plugin Verifier Result
225225
if: ${{ always() }}
226-
uses: actions/upload-artifact@v4.3.0
226+
uses: actions/upload-artifact@v4.3.1
227227
with:
228228
name: pluginVerifier-result
229229
path: ${{ github.workspace }}/build/reports/pluginVerifier

.github/workflows/changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
3333
# Generate a changelog
3434
- name: Generate a changelog
35-
uses: orhun/git-cliff-action@v2.3.0
35+
uses: orhun/git-cliff-action@v3.0.1
3636
id: git-cliff
3737
with:
3838
config: cliff.toml
@@ -47,7 +47,7 @@ jobs:
4747

4848
# Create pull request
4949
- name: Create Pull Request
50-
uses: peter-evans/create-pull-request@v5.0.1
50+
uses: peter-evans/create-pull-request@v6.0.0
5151
with:
5252
delete-branch: true
5353
branch-suffix: short-commit-hash

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
# Setup Gradle
3535
- name: Setup Gradle
36-
uses: gradle/gradle-build-action@v2.12.0
36+
uses: gradle/gradle-build-action@v3.1.0
3737

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
# Setup Gradle
4646
- name: Setup Gradle
47-
uses: gradle/gradle-build-action@v2.12.0
47+
uses: gradle/gradle-build-action@v3.1.0
4848

4949
# Run IDEA prepared for UI testing
5050
- name: Run IDE

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.27]] - 2024-02-29
7+
8+
### Bug Fixes
9+
10+
- Solve some minor issues and update dependencies
11+
612
## [1.2.26] - 2024-01-28
713

814
### Bug Fixes

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pluginName = IntelliJ Nest Plugin
55
pluginRepositoryUrl = https://github.com/KartanHQ/intellij-nestjs
66

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

1010
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1111
pluginSinceBuild = 231

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ annotations = "24.1.0"
55
# plugins
66
kotlin = "1.9.22"
77
changelog = "2.2.0"
8-
gradleIntelliJPlugin = "1.17.0"
8+
gradleIntelliJPlugin = "1.17.2"
99
qodana = "0.1.13"
10-
kover = "0.7.5"
10+
kover = "0.7.6"
1111

1212
[libraries]
1313
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }

0 commit comments

Comments
 (0)