File tree Expand file tree Collapse file tree 8 files changed +22
-16
lines changed Expand file tree Collapse file tree 8 files changed +22
-16
lines changed Original file line number Diff line number Diff line change @@ -34,15 +34,15 @@ jobs:
34
34
35
35
# Check out current repository
36
36
- name : Fetch Sources
37
- uses : actions/checkout@v3.3 .0
37
+ uses : actions/checkout@v3.5 .0
38
38
39
39
# Validate wrapper
40
40
- name : Gradle Wrapper Validation
41
41
uses : gradle/wrapper-validation-action@v1.0.6
42
42
43
43
# Setup Java 11 environment for the next steps
44
44
- name : Setup Java
45
- uses : actions/setup-java@v3.10 .0
45
+ uses : actions/setup-java@v3.11 .0
46
46
with :
47
47
distribution : zulu
48
48
java-version : 11
80
80
81
81
# Cache Plugin Verifier IDEs
82
82
- name : Setup Plugin Verifier IDEs Cache
83
- uses : actions/cache@v3.2.6
83
+ uses : actions/cache@v3.3.1
84
84
with :
85
85
path : ${{ steps.properties.outputs.pluginVerifierHomeDir }}/ides
86
86
key : plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
@@ -126,7 +126,7 @@ jobs:
126
126
127
127
# Check out current repository
128
128
- name : Fetch Sources
129
- uses : actions/checkout@v3.3 .0
129
+ uses : actions/checkout@v3.5 .0
130
130
131
131
# Remove old release drafts by using the curl request for the available releases with draft flag
132
132
- name : Remove Old Release Drafts
Original file line number Diff line number Diff line change 16
16
17
17
# Check out current repository
18
18
- name : Fetch Sources
19
- uses : actions/checkout@v3.3 .0
19
+ uses : actions/checkout@v3.5 .0
20
20
with :
21
21
fetch-depth : 0
22
22
47
47
48
48
# Create pull request
49
49
- name : Create Pull Request
50
- uses : peter-evans/create-pull-request@v4.2.3
50
+ uses : peter-evans/create-pull-request@v4.2.4
51
51
with :
52
52
delete-branch : true
53
53
branch-suffix : short-commit-hash
Original file line number Diff line number Diff line change 20
20
21
21
# Check out current repository
22
22
- name : Fetch Sources
23
- uses : actions/checkout@v3.3 .0
23
+ uses : actions/checkout@v3.5 .0
24
24
25
25
# Run Qodana inspections
26
26
- name : Qodana - Code Inspection
29
29
# Uploading a SARIF-formatted Qodana report to GitHub
30
30
- name : Uploading Qodana report to GitHub
31
31
if : ${{ false }}
32
- uses : github/codeql-action/upload-sarif@v2.2.5
32
+ uses : github/codeql-action/upload-sarif@v2.2.9
33
33
with :
34
34
sarif_file : ${{ runner.temp }}/qodana/results/qodana.sarif.json
35
35
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ jobs:
14
14
15
15
# Check out current repository
16
16
- name : Fetch Sources
17
- uses : actions/checkout@v3.3 .0
17
+ uses : actions/checkout@v3.5 .0
18
18
with :
19
19
ref : ${{ github.event.release.tag_name }}
20
20
21
21
# Setup Java 11 environment for the next steps
22
22
- name : Setup Java
23
- uses : actions/setup-java@v3.10 .0
23
+ uses : actions/setup-java@v3.11 .0
24
24
with :
25
25
distribution : zulu
26
26
java-version : 11
Original file line number Diff line number Diff line change @@ -29,11 +29,11 @@ jobs:
29
29
30
30
# Check out current repository
31
31
- name : Fetch Sources
32
- uses : actions/checkout@v3.3 .0
32
+ uses : actions/checkout@v3.5 .0
33
33
34
34
# Setup Java 11 environment for the next steps
35
35
- name : Setup Java
36
- uses : actions/setup-java@v3.10 .0
36
+ uses : actions/setup-java@v3.11 .0
37
37
with :
38
38
distribution : zulu
39
39
java-version : 11
Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
5
5
## [ Unreleased]
6
+ ## [ 1.2.8] - 2023-03-30
7
+
8
+ ### Bug Fixes
9
+
10
+ - Solve some minor issues and update dependencies
11
+
6
12
## [ 1.2.7] - 2023-03-03
7
13
8
14
### Bug Fixes
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
9
9
// Kotlin support
10
10
id(" org.jetbrains.kotlin.jvm" ) version " 1.8.10"
11
11
// Gradle IntelliJ Plugin
12
- id(" org.jetbrains.intellij" ) version " 1.13.1 "
12
+ id(" org.jetbrains.intellij" ) version " 1.13.3 "
13
13
// Gradle Changelog Plugin
14
14
id(" org.jetbrains.changelog" ) version " 2.0.0"
15
15
// Gradle Qodana Plugin
@@ -28,8 +28,8 @@ dependencies {
28
28
implementation(kotlin(" stdlib" ))
29
29
testImplementation(" org.junit.jupiter:junit-jupiter-api:5.9.2" )
30
30
testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine" )
31
- testImplementation(" com.intellij.remoterobot:remote-robot:0.11.16 " )
32
- testImplementation(" com.intellij.remoterobot:remote-fixtures:0.11.16 " )
31
+ testImplementation(" com.intellij.remoterobot:remote-robot:0.11.18 " )
32
+ testImplementation(" com.intellij.remoterobot:remote-fixtures:0.11.18 " )
33
33
// Video Recording
34
34
testImplementation(" com.automation-remarks:video-recorder-junit5:2.0" )
35
35
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ pluginName = IntelliJ Nest Plugin
5
5
pluginRepositoryUrl = https://github.com/nekofar/intellij-nestjs
6
6
7
7
# SemVer format -> https://semver.org
8
- pluginVersion = 1.2.7
8
+ pluginVersion = 1.2.8
9
9
10
10
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
11
11
# for insight into build numbers and IntelliJ Platform versions.
You can’t perform that action at this time.
0 commit comments