Skip to content

Bump the github-actions group across 1 directory with 3 updates #708

Bump the github-actions group across 1 directory with 3 updates

Bump the github-actions group across 1 directory with 3 updates #708

Workflow file for this run

name: Build and test
on: [ push, pull_request ]
jobs:
ci:
strategy:
matrix:
gradle-version: [ '7.6.4', '8.7', '8.12.1', 'current' ]
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
runs-on: ${{ matrix.os }}
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/main')
steps:
- uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
with:
java-version: 21
distribution: 'temurin'
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
with:
gradle-version: 8.12.1
- run:
./gradlew check --continue -Dtest.gradle.version.override='${{ matrix.gradle-version }}'
shell: bash