Skip to content

Commit

Permalink
Merge pull request #4 from mikejhill/feature/update-github-actions-to…
Browse files Browse the repository at this point in the history
…-java-17

Update verify-plugin.xml workflow to use Java 17
  • Loading branch information
mikejhill authored Oct 12, 2022
2 parents abc748d + 36c7db5 commit 0eb6cb2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
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

0 comments on commit 0eb6cb2

Please sign in to comment.