Skip to content

Commit

Permalink
Merge pull request #111 from zonkyio/github-actions-upgrade
Browse files Browse the repository at this point in the history
Upgrade github actions in workflows
  • Loading branch information
tomix26 authored Feb 10, 2023
2 parents b229fe5 + 1fa1eb4 commit 0d733bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: master
fetch-depth: 0
Expand All @@ -17,7 +17,7 @@ jobs:
git config user.name "Zonky Bot"
git config user.email "[email protected]"
- name: Set up JDK
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 8
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11, 13, 14, 15]
java: [8, 11, 13, 15, 17, 18, 19]
steps:
- name: Checkout project
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
Expand Down

0 comments on commit 0d733bc

Please sign in to comment.