Skip to content
Merged
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
7 changes: 3 additions & 4 deletions .github/actions/format/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ inputs:
runs:
using: 'composite'
steps:
- name: Set up JDK 11 for formatting
- name: Set up JDK for formatting
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v4.2.1
with:
java-version: '11'
distribution: 'temurin'

java-version: '21'
distribution: 'adopt'
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The adopt distribution for actions/setup-java is deprecated and will be removed in a future version. It is recommended to use temurin instead, which was the value used previously. Using a deprecated value could cause this action to fail in the future.

        distribution: 'temurin'

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will create a new issue for addressing this

- name: Cache Maven packages
uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b
with:
Expand Down