Skip to content

Commit

Permalink
Update CI dependencies to actions/{checkout,setup-java}@v3
Browse files Browse the repository at this point in the history
  • Loading branch information
generalmimon committed Feb 7, 2023
1 parent a443593 commit 221f897
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [1.8, 11, 17]
java: [ '8', '11', '17' ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
- name: Run tests
Expand Down

0 comments on commit 221f897

Please sign in to comment.