Skip to content

Commit 41aff9a

Browse files
committed
Remove support for IDEA 2022.2
1 parent 59e155b commit 41aff9a

5 files changed

Lines changed: 12 additions & 11 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
jdk: [ 11 ]
30+
jdk: [ 17 ]
3131
include:
32-
- jdk: 11
32+
- jdk: 17
3333
primary: true
3434

3535
steps:
@@ -40,7 +40,7 @@ jobs:
4040
uses: actions/setup-java@v3
4141
with:
4242
java-version: ${{ matrix.jdk }}
43-
distribution: adopt
43+
distribution: temurin
4444
# Setup caches and collect metadata
4545
- name: Setup cache for Gradle and dependencies
4646
uses: actions/cache@v3

.github/workflows/bump-version.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
# Setup environment
2121
- name: Checkout repository
2222
uses: actions/checkout@v3
23-
- name: Set up JDK 11
23+
- name: Set up JDK 17
2424
uses: actions/setup-java@v3
2525
with:
26-
java-version: 11
27-
distribution: adopt
26+
java-version: 17
27+
distribution: temurin
2828
# Fail if the release was not triggered from the master branch
2929
- name: Verify branch
3030
if: github.event_name == 'release'

.github/workflows/publish-to-jetbrains.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
# Setup environment
2121
- name: Checkout repository
2222
uses: actions/checkout@v3
23-
- name: Set up JDK 11
23+
- name: Set up JDK 17
2424
uses: actions/setup-java@v3
2525
with:
26-
java-version: 11
27-
distribution: adopt
26+
java-version: 17
27+
distribution: temurin
2828
# Setup cache
2929
- name: Setup cache for Gradle and dependencies
3030
uses: actions/cache@v3

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
### Deprecated
1111

1212
### Removed
13+
- Support for IDEA 2022.2
1314

1415
### Fixed
1516

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
pluginGroup = org.nixos.idea
55
pluginName = NixIDEA
66
pluginVersion = 0.4.0.11
7-
pluginSinceBuild = 222
7+
pluginSinceBuild = 223
88
pluginUntilBuild = 233.*
99

1010
platformType = IC
11-
platformVersion = 2022.2.5
11+
platformVersion = 2022.3.3

0 commit comments

Comments
 (0)