Skip to content

Commit

Permalink
Using @main for actions/setup-java instead of specifically targeting …
Browse files Browse the repository at this point in the history
…v1 which doesn't seem to work anymore
  • Loading branch information
johanhaleby committed Jan 18, 2024
1 parent bc1b97d commit c28f15b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ jobs:
steps:
- uses: actions/checkout@main
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
uses: actions/setup-java@main
with:
distribution: "adopt"
java-version: ${{ matrix.java }}
- name: Cache Maven packages
uses: actions/cache@main
Expand Down

0 comments on commit c28f15b

Please sign in to comment.