2023-02-05 05:04:02 +00:00
|
|
|
name: Dockle
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2024-03-20 12:15:37 +00:00
|
|
|
- beta
|
|
|
|
- io
|
|
|
|
- host
|
2023-02-05 05:04:02 +00:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
dockle:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-08 17:43:24 +00:00
|
|
|
- name: Checkout code
|
2023-11-09 08:43:42 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-11-08 17:43:24 +00:00
|
|
|
- name: Build an image from Dockerfile
|
2023-11-09 08:43:42 +00:00
|
|
|
uses: docker/build-push-action@v5
|
2023-11-08 17:43:24 +00:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: false
|
|
|
|
provenance: false
|
|
|
|
cache-from: type=registry,ref=ghcr.io/misskeyio/misskey:io-buildcache
|
|
|
|
tags: |
|
|
|
|
misskey:scan
|
|
|
|
- name: Run dockle
|
|
|
|
uses: goodwithtech/dockle-action@main
|
|
|
|
with:
|
|
|
|
image: 'misskey:scan'
|
|
|
|
format: 'list'
|
|
|
|
exit-code: '1'
|
|
|
|
exit-level: 'warn'
|
|
|
|
ignore: 'CIS-DI-0005,CIS-DI-0010'
|