mirror of
https://github.com/OJ/gobuster.git
synced 2025-09-23 18:47:21 +02:00
Bumps [hadolint/hadolint-action](https://github.com/hadolint/hadolint-action) from 3.2.0 to 3.3.0. - [Release notes](https://github.com/hadolint/hadolint-action/releases) - [Changelog](https://github.com/hadolint/hadolint-action/blob/master/.releaserc) - [Commits](https://github.com/hadolint/hadolint-action/compare/v3.2.0...v3.3.0) --- updated-dependencies: - dependency-name: hadolint/hadolint-action dependency-version: 3.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
600 B
YAML
22 lines
600 B
YAML
name: Hadolint
|
|
on:
|
|
push:
|
|
paths:
|
|
- "**/Dockerfile"
|
|
pull_request:
|
|
workflow_dispatch:
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
hadolint:
|
|
name: hadolint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: hadolint/hadolint-action@v3.3.0
|
|
with:
|
|
dockerfile: Dockerfile
|
|
# DL3007: Using latest is prone to errors if the image will ever update. Pin the version explicitly to a release tag
|
|
# DL3018 Pin versions in apk add. Instead of `apk add <package>` use `apk add <package>=<version>`
|
|
ignore: DL3007,DL3018
|