Skip to content

Bump actions/setup-java from 3 to 4 #118

Bump actions/setup-java from 3 to 4

Bump actions/setup-java from 3 to 4 #118

Workflow file for this run

# https://github.com/actions
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v4
# https://github.com/actions/cache
- uses: actions/cache@v3
with:
# https://github.com/actions/cache/blob/main/examples.md#java---gradle
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
# https://github.com/gradle/wrapper-validation-action
- uses: gradle/wrapper-validation-action@v1
# https://github.com/actions/setup-java
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- run: ./gradlew