mirror of
https://github.com/redhat-actions/push-to-registry.git
synced 2026-04-23 00:39:39 +00:00
Some checks failed
Check Case Normalization / Build and push image (push) Has been cancelled
Check Case Normalization / Build and push image-1 (push) Has been cancelled
CI checks / Run ESLint (push) Has been cancelled
CI checks / Check Distribution (push) Has been cancelled
CI checks / Check Input and Output enums (push) Has been cancelled
Push to GHCR / Build and push image (push) Has been cancelled
Push to GHCR / Build and push image-1 (push) Has been cancelled
Build and Push Manifest / Build and push manifest (push) Has been cancelled
Build and Push Manifest / Build and push manifest-1 (push) Has been cancelled
Multiple container CLI build tests / Build with docker after podman and push (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with docker after podman and push (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with docker after podman and push FQIN (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with docker after podman and push FQIN (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with docker only and push (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with docker only and push (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with docker only and push FQIN (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with docker only and push FQIN (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with podman after docker and push (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with podman after docker and push (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with podman after docker and push FQIN (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with podman after docker and push FQIN (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with podman only and push (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with podman only and push (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with podman only and push FQIN (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with podman only and push FQIN (latest: true) (push) Has been cancelled
Push to Quay.io / Build and push image (push) Has been cancelled
Push to Quay.io / Build and push image-1 (push) Has been cancelled
Login and Push / Login and push image to Quay.io (push) Has been cancelled
Login and Push / Login and push image to Quay.io-1 (push) Has been cancelled
update dependencies to the latest versions for Node.js 20 Signed-off-by: skoved <skoved@redhat.com>
35 lines
833 B
YAML
35 lines
833 B
YAML
name: Vulnerability Scan with CRDA
|
|
on:
|
|
# push:
|
|
workflow_dispatch:
|
|
# pull_request_target:
|
|
# types: [ assigned, opened, synchronize, reopened, labeled, edited ]
|
|
# schedule:
|
|
# - cron: '0 0 * * *' # every day at midnight
|
|
|
|
jobs:
|
|
crda-scan:
|
|
runs-on: ubuntu-latest
|
|
name: Scan project vulnerability with CRDA
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Install CRDA
|
|
uses: redhat-actions/openshift-tools-installer@v1
|
|
with:
|
|
source: github
|
|
github_pat: ${{ github.token }}
|
|
crda: "latest"
|
|
|
|
- name: CRDA Scan
|
|
id: scan
|
|
uses: redhat-actions/crda@v1
|
|
with:
|
|
crda_key: ${{ secrets.CRDA_KEY }}
|
|
fail_on: never
|