Skip to content

revert: disable downstream-tagging for dynamic-localpv-provisioner repo #73

revert: disable downstream-tagging for dynamic-localpv-provisioner repo

revert: disable downstream-tagging for dynamic-localpv-provisioner repo #73

Workflow file for this run

# Copyright 2018-2020 The OpenEBS Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: ci
on:
pull_request:
branches:
# on pull requests to main and release branches
- main
- 'v*'
jobs:
linux-utils:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
version: v0.13.1
- name: Build Image
uses: docker/build-push-action@v5
with:
file: ./Dockerfile
push: false
load: true
platforms: linux/amd64
tags: |
openebs/linux-utils:ci
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'openebs/linux-utils:ci'
format: 'table'
exit-code: '1'
ignore-unfixed: true
severity: 'CRITICAL,HIGH'