Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update verify-plugin.xml workflow to use Java 17 #4

Merged
merged 2 commits into from
Oct 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/publish-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v3.1.0
- name: Setup Java
uses: actions/setup-java@v1.4.3
uses: actions/setup-java@v3.5.1
with:
java-version: 11.x
java-version: 17.x
distribution: temurin
- name: Gradle Cache
uses: actions/cache@v2.1.3
uses: actions/cache@v3.0.10
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle
Expand All @@ -27,7 +28,7 @@ jobs:
run: |
./gradlew --no-daemon verifyPlugin
- name: Publish Artifact
uses: actions/upload-artifact@v2.2.1
uses: actions/upload-artifact@v3.1.0
with:
name: intellij-move-tab
path: build/libs
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/verify-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@3.1.0
- name: Setup Java
uses: actions/setup-java@v1.4.3
uses: actions/setup-java@v3.5.1
with:
java-version: 11.x
java-version: 17.x
distribution: temurin
- name: Use Gradle Cache
uses: actions/cache@v2.1.3
uses: actions/cache@v3.0.10
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle
Expand Down