Skip to content

build(deps): bump actions/checkout from 6.0.0 to 6.0.1 #1735

build(deps): bump actions/checkout from 6.0.0 to 6.0.1

build(deps): bump actions/checkout from 6.0.0 to 6.0.1 #1735

name: JDK 1.8 Build & Tests
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
java-version: ["8"]
permissions:
contents: read
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Install JDK
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
with:
java-version: ${{ matrix.java-version }}
distribution: "adopt"
- name: Run all tests
run: |
if [ ${{ matrix.java-version }} == "8" ]; then
export TRAVIS_JDK=openjdk8
fi
./scripts/run_no_prep_tests.sh -ci
env:
SKIP_UNSTABLE_TESTS: 1