mirror of
https://github.com/MisskeyIO/misskey
synced 2024-11-23 14:46:40 +09:00
a5a1518e6d
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
36 lines
819 B
YAML
36 lines
819 B
YAML
name: Dockle
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- beta
|
|
- io
|
|
- host
|
|
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@v6
|
|
with:
|
|
context: .
|
|
push: false
|
|
provenance: false
|
|
cache-from: type=registry,ref=ghcr.io/misskeyio/misskey:io-buildcache
|
|
tags: |
|
|
misskey:scan
|
|
- name: Run dockle
|
|
uses: docker://goodwithtech/dockle:v0.4.14
|
|
env:
|
|
DOCKLE_OUTPUT_FORMAT: list
|
|
DOCKLE_EXIT_CODE: 1
|
|
DOCKLE_EXIT_LEVEL: WARN
|
|
DOCKLE_IGNORES: CIS-DI-0005,CIS-DI-0010
|
|
DOCKLE_DEBUG: true
|
|
with:
|
|
args: 'misskey:scan'
|