diff options
Diffstat (limited to '.github/actions')
-rw-r--r-- | .github/actions/setup-normal-workspace/action.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/actions/setup-normal-workspace/action.yml b/.github/actions/setup-normal-workspace/action.yml new file mode 100644 index 000000000..100aa9b03 --- /dev/null +++ b/.github/actions/setup-normal-workspace/action.yml @@ -0,0 +1,15 @@ +name: 'Setup Java, Gradle and check out the source code' + +runs: + using: composite + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Set up JDK 21 + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: 21 + cache: gradle + - name: Setup gradle + uses: gradle/actions/setup-gradle@v4 |