Skip to content

Skipper undeploy attempts delete of other info when no package is found for stream #648

Skipper undeploy attempts delete of other info when no package is found for stream

Skipper undeploy attempts delete of other info when no package is found for stream #648

Workflow file for this run

name: CI PRs
on:
pull_request:
env:
MAVEN_THREADS: '-T 2'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# cache maven repo
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-m2-
# jdk8
- uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'liberica'
- uses: jvalkeal/setup-maven@v1
with:
maven-version: 3.8.8
maven-mirror: 'https://dlcdn.apache.org/maven/maven-3/'
# build
- name: Build
run: |
mvn -B -s .github/settings.xml $MAVEN_THREADS clean install
# clean m2 cache
- name: Clean cache
run: |
find ~/.m2/repository -type d -name '*SNAPSHOT' | xargs rm -fr
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
ignore-unfixed: true
format: 'table'
severity: 'CRITICAL,HIGH'
- name: 'Scanned'
shell: bash
run: echo "::info ::Scanned"
done:
runs-on: ubuntu-latest
needs: [ scan, build ]
steps:
- name: 'Done'
shell: bash
run: echo "::info ::Done"