Skip to content

chore(deps): update actions/checkout action to v4.1.6 (#17) #20

chore(deps): update actions/checkout action to v4.1.6 (#17)

chore(deps): update actions/checkout action to v4.1.6 (#17) #20

Workflow file for this run

name: Build check
on:
push:
branches:
- main
paths:
- '**'
- '!**.md'
- '!.github/**'
- '.github/workflows/build.yml'
pull_request:
branches:
- main
paths:
- '**'
- '!**.md'
- '!.github/**'
- '.github/workflows/build.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Set up JDK
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
java-version: 17
distribution: adopt
- name: Set up gradle
uses: gradle/actions/setup-gradle@db19848a5fa7950289d3668fb053140cf3028d43 # v3.3.2
- name: Build
run: ./gradlew build