Skip to content

Bump actions/setup-java from 4.4.0 to 4.5.0 #1145

Bump actions/setup-java from 4.4.0 to 4.5.0

Bump actions/setup-java from 4.4.0 to 4.5.0 #1145

Workflow file for this run

name: CI
on:
pull_request:
push:
schedule:
- cron: '0 20 * * 5'
jobs:
test:
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
java:
- 8
- 21
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
with:
java-version: ${{matrix.java}}
distribution: temurin
- uses: coursier/cache-action@v6
- shell: bash
run: sbt -v
"+ scalafmtCheckAll"
scalafmtSbtCheck
"+ test"
- uses: mikepenz/action-junit-report@db71d41eb79864e25ab0337e395c352e84523afe # v4.3.1
if: always()
with:
report_paths: '**/target/test-reports/*.xml'
require_tests: true
check_name: "${{ matrix.java }}"