Skip to content

Update actions/checkout action to v4.1.7 #389

Update actions/checkout action to v4.1.7

Update actions/checkout action to v4.1.7 #389

Workflow file for this run

name: CI
on:
pull_request:
jobs:
ciJvms:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
java: [ '8', '11', '17', '21' ]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 100
- name: Fetch tags
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/*
- uses: actions/setup-java@v4.2.1
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'sbt'
- name: sbt ci ${{ github.ref }}
run: ./sbt ci
ci:
if: always()
runs-on: ubuntu-22.04
needs: [ ciJvms ]
steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}