Skip to content

Commit 1972645

Browse files
committed
Merge branch 'release/1.2.30'
2 parents 2a12301 + c98eb0e commit 1972645

File tree

8 files changed

+42
-36
lines changed

8 files changed

+42
-36
lines changed

.github/workflows/build.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -58,22 +58,22 @@ jobs:
5858
5959
# Check out current repository
6060
- name: Fetch Sources
61-
uses: actions/checkout@v4.1.1
61+
uses: actions/checkout@v4.1.6
6262

6363
# Validate wrapper
6464
- name: Gradle Wrapper Validation
65-
uses: gradle/wrapper-validation-action@v2.1.1
65+
uses: gradle/wrapper-validation-action@v3.3.2
6666

6767
# Setup Java environment for the next steps
6868
- name: Setup Java
69-
uses: actions/setup-java@v4.0.0
69+
uses: actions/setup-java@v4.2.1
7070
with:
7171
distribution: zulu
7272
java-version: 17
7373

7474
# Setup Gradle
7575
- name: Setup Gradle
76-
uses: gradle/gradle-build-action@v3.1.0
76+
uses: gradle/gradle-build-action@v3.3.2
7777

7878
# Set environment variables
7979
- name: Export Properties
@@ -122,7 +122,7 @@ jobs:
122122
123123
# Store already-built plugin as an artifact for downloading
124124
- name: Upload artifact
125-
uses: actions/upload-artifact@v4.3.1
125+
uses: actions/upload-artifact@v4.3.3
126126
with:
127127
name: ${{ steps.artifact.outputs.filename }}
128128
path: ./build/distributions/content/*/*
@@ -136,18 +136,18 @@ jobs:
136136

137137
# Check out current repository
138138
- name: Fetch Sources
139-
uses: actions/checkout@v4.1.1
139+
uses: actions/checkout@v4.1.6
140140

141141
# Setup Java environment for the next steps
142142
- name: Setup Java
143-
uses: actions/setup-java@v4.0.0
143+
uses: actions/setup-java@v4.2.1
144144
with:
145145
distribution: zulu
146146
java-version: 17
147147

148148
# Setup Gradle
149149
- name: Setup Gradle
150-
uses: gradle/gradle-build-action@v3.1.0
150+
uses: gradle/gradle-build-action@v3.3.2
151151

152152
# Run tests
153153
- name: Run Tests
@@ -156,14 +156,14 @@ jobs:
156156
# Collect Tests Result of failed tests
157157
- name: Collect Tests Result
158158
if: ${{ failure() }}
159-
uses: actions/upload-artifact@v4.3.1
159+
uses: actions/upload-artifact@v4.3.3
160160
with:
161161
name: tests-result
162162
path: ${{ github.workspace }}/build/reports/tests
163163

164164
# Upload Kover report to CodeCov
165165
- name: Upload Code Coverage Report
166-
uses: codecov/codecov-action@v4.1.0
166+
uses: codecov/codecov-action@v4.4.1
167167
with:
168168
files: ${{ github.workspace }}/build/reports/kover/xml/report.xml
169169

@@ -180,18 +180,18 @@ jobs:
180180

181181
# Check out current repository
182182
- name: Fetch Sources
183-
uses: actions/checkout@v4.1.1
183+
uses: actions/checkout@v4.1.6
184184

185185
# Setup Java environment for the next steps
186186
- name: Setup Java
187-
uses: actions/setup-java@v4.0.0
187+
uses: actions/setup-java@v4.2.1
188188
with:
189189
distribution: zulu
190190
java-version: 17
191191

192192
# Run Qodana inspections
193193
- name: Qodana - Code Inspection
194-
uses: JetBrains/qodana-action@v2023.3.1
194+
uses: JetBrains/qodana-action@v2024.1.5
195195
with:
196196
cache-default-branch-only: true
197197

@@ -209,22 +209,22 @@ jobs:
209209
210210
# Check out current repository
211211
- name: Fetch Sources
212-
uses: actions/checkout@v4.1.1
212+
uses: actions/checkout@v4.1.6
213213

214214
# Setup Java environment for the next steps
215215
- name: Setup Java
216-
uses: actions/setup-java@v4.0.0
216+
uses: actions/setup-java@v4.2.1
217217
with:
218218
distribution: zulu
219219
java-version: 17
220220

221221
# Setup Gradle
222222
- name: Setup Gradle
223-
uses: gradle/gradle-build-action@v3.1.0
223+
uses: gradle/gradle-build-action@v3.3.2
224224

225225
# Cache Plugin Verifier IDEs
226226
- name: Setup Plugin Verifier IDEs Cache
227-
uses: actions/cache@v4.0.0
227+
uses: actions/cache@v4.0.2
228228
with:
229229
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
230230
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
@@ -236,7 +236,7 @@ jobs:
236236
# Collect Plugin Verifier Result
237237
- name: Collect Plugin Verifier Result
238238
if: ${{ always() }}
239-
uses: actions/upload-artifact@v4.3.1
239+
uses: actions/upload-artifact@v4.3.3
240240
with:
241241
name: pluginVerifier-result
242242
path: ${{ github.workspace }}/build/reports/pluginVerifier
@@ -254,11 +254,11 @@ jobs:
254254

255255
# Check out current repository
256256
- name: Fetch Sources
257-
uses: actions/checkout@v4.1.1
257+
uses: actions/checkout@v4.1.6
258258

259259
# Setup Java environment for the next steps
260260
- name: Setup Java
261-
uses: actions/setup-java@v4.0.0
261+
uses: actions/setup-java@v4.2.1
262262
with:
263263
distribution: zulu
264264
java-version: 17
@@ -274,7 +274,7 @@ jobs:
274274
275275
# Create a new release draft which is not publicly visible and requires manual acceptance
276276
- name: Create Release Draft
277-
uses: nekofar/create-github-release@v1.0.13
277+
uses: nekofar/create-github-release@v1.0.14
278278
with:
279279
tag: v${{ needs.build.outputs.version }} # The name of the tag to be released
280280
title: v${{ needs.build.outputs.version }} # The title for the release

.github/workflows/changelog.yml

Lines changed: 3 additions & 3 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@v4.1.1
19+
uses: actions/checkout@v4.1.6
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@v3.0.1
35+
uses: orhun/git-cliff-action@v3.1.0
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@v6.0.0
50+
uses: peter-evans/create-pull-request@v6.0.5
5151
with:
5252
delete-branch: true
5353
branch-suffix: short-commit-hash

.github/workflows/git-flow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
# Checks out the repository code under $GITHUB_WORKSPACE, so the job can access it
2424
- name: Checkout Repository Code
25-
uses: actions/checkout@v4.1.1
25+
uses: actions/checkout@v4.1.6
2626

2727
# This step uses the Git Flow Action to create PRs based on branch types
2828
- name: Execute Git Flow Action

.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@v4.1.1
23+
uses: actions/checkout@v4.1.6
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@v4.0.0
29+
uses: actions/setup-java@v4.2.1
3030
with:
3131
distribution: zulu
3232
java-version: 17
3333

3434
# Setup Gradle
3535
- name: Setup Gradle
36-
uses: gradle/gradle-build-action@v3.1.0
36+
uses: gradle/gradle-build-action@v3.3.2
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@v4.1.1
36+
uses: actions/checkout@v4.1.6
3737

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

4545
# Setup Gradle
4646
- name: Setup Gradle
47-
uses: gradle/gradle-build-action@v3.1.0
47+
uses: gradle/gradle-build-action@v3.3.2
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.2
55+
uses: jtalk/url-health-check-action@v4
5656
with:
5757
url: http://127.0.0.1:8082
5858
max-attempts: 15

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
6-
## [1.2.29]] - 2024-02-29
6+
## [1.2.30] - 2024-05-30
7+
8+
### Bug Fixes
9+
10+
- Solve some minor issues and update dependencies
11+
12+
## [1.2.29] - 2024-02-29
713

814
### Bug Fixes
915

gradle.properties

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

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

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

gradle/libs.versions.toml

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

55
# plugins
6-
kotlin = "1.9.22"
6+
kotlin = "1.9.23"
77
changelog = "2.2.0"
8-
gradleIntelliJPlugin = "1.17.2"
8+
gradleIntelliJPlugin = "1.17.3"
99
qodana = "0.1.13"
1010
kover = "0.7.6"
1111

0 commit comments

Comments
 (0)