Skip to content

Commit 7f088d2

Browse files
authored
Merge pull request #48 from mayconsgs/main
Update plugin to accept new versions of Intellij
2 parents dafc35b + 6033b00 commit 7f088d2

File tree

5 files changed

+14
-78
lines changed

5 files changed

+14
-78
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Learn how to add code owners here:
22
# https://help.github.com/en/articles/about-code-owners
33

4-
* @Mayconsgs
4+
* @mayconsgs

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,10 @@ updates:
66
- package-ecosystem: "gradle"
77
directory: "/"
88
schedule:
9+
interval: "weekly"
10+
11+
- package-ecosystem: "github-actions"
12+
directory: "/"
13+
schedule:
14+
# Check for updates to GitHub Actions every weekday
915
interval: "daily"

.github/workflows/build.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
# Docs:
1111
# - GitHub Actions: https://help.github.com/en/actions
1212
# - IntelliJ Plugin Verifier GitHub Action: https://github.com/ChrisCarini/intellij-platform-plugin-verifier-action
13-
#
14-
## JBIJPPTPL
1513

1614
name: Build
1715
on: [push, pull_request]
@@ -35,7 +33,7 @@ jobs:
3533
needs: gradleValidation
3634
runs-on: ubuntu-latest
3735
steps:
38-
# Setup Java 1.8 environment for the next steps
36+
# Setup Java 11 environment for the next steps
3937
- name: Setup Java
4038
uses: actions/setup-java@v2
4139
with:
@@ -80,7 +78,7 @@ jobs:
8078
changelog: ${{ steps.properties.outputs.changelog }}
8179
artifact: ${{ steps.properties.outputs.artifact }}
8280
steps:
83-
# Setup Java 1.8 environment for the next steps
81+
# Setup Java 11 environment for the next steps
8482
- name: Setup Java
8583
uses: actions/setup-java@v2
8684
with:
@@ -142,7 +140,7 @@ jobs:
142140
needs: build
143141
runs-on: ubuntu-latest
144142
steps:
145-
# Setup Java 1.8 environment for the next steps
143+
# Setup Java 11 environment for the next steps
146144
- name: Setup Java
147145
uses: actions/setup-java@v2
148146
with:

.github/workflows/release.yml

Lines changed: 0 additions & 68 deletions
This file was deleted.

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
33
pluginGroup=com.github.getomni.jetbrains
44
pluginName=Omni Theme
5-
pluginVersion=0.1.4
5+
pluginVersion=0.1.5
66
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
77
# for insight into build numbers and IntelliJ Platform versions.
88
pluginSinceBuild=201.6668.113
9-
pluginUntilBuild=212.*
9+
pluginUntilBuild=213.*
1010
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
1111
# See https://jb.gg/intellij-platform-builds-list for available build versions.
12-
pluginVerifierIdeVersions=203.7148.57, 211.6693.111, 212.4746.92
12+
pluginVerifierIdeVersions=203.7148.57, 211.6693.111, 212.5457.46
1313
# Plugin Build Platform
1414
platformType=IC
15-
platformVersion=2020.2
15+
platformVersion=2020.3
1616
platformDownloadSources=true
1717
platformPlugins=
1818
# Opt-out flag for bundling Kotlin standard library.

0 commit comments

Comments
 (0)