fix(CVE): Bumped kork version to fix CVE-2022-22965 #110
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: Halyard CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- release-* | |
jobs: | |
build: | |
# Only run this on repositories in the 'spinnaker' org, not on forks. | |
if: startsWith(github.repository, 'spinnaker/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: 8 | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.gradle | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Build | |
env: | |
GRADLE_OPTS: -Xmx6g -Xms6g -Dorg.gradle.daemon=false | |
run: ./gradlew build javadoc |