hotfix: pizzaxでnull
の設定値がデフォルトに置き換えられてしまう問題を修正など
#587
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: Dockle | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
jobs: | |
dockle: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build an image from Dockerfile | |
uses: docker/build-push-action@v5 | |
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' |