fix openssf problems #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: HiBench CI SPARK_3.0_HADOOP_3.2 | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@b6e674f4b717d7b0ae3baee0fbe79f498905dfde # v1.4.4 | |
with: | |
java-version: 1.8 | |
- name: Restore cached dependencies | |
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3 | |
with: | |
path: | | |
# /var/cache/apt/archives/*.deb | |
~/.m2/repository | |
~/opt | |
key: ${{ runner.os }}_spark_3.0_hadoop_3.2 | |
restore-keys: | | |
${{ runner.os }}- | |
- name: Cluster spark_3.0_hadoop_3.2_hive_3.0 | |
run: | | |
${{github.workspace}}/actions/build_and_run_all_spark_3.0_hadoop_3.2_part_1.sh |