Skip to content

hadolint

hadolint #113

Workflow file for this run

name: hadolint
on:
schedule:
- cron: '0 0 * * *'
push:
branches:
- main
paths:
- '.github/workflows/_shared**'
- '.github/workflows/hadolint.yml'
- 'hadolint/**'
pull_request:
paths:
- '.github/workflows/_shared**'
- '.github/workflows/hadolint.yml'
- 'hadolint/**'
workflow_dispatch:
concurrency: # this is required while I don't work on improving the build time
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
if: github.event_name == 'pull_request'
uses: ./.github/workflows/_shared_build.yml
with:
owner: ${{ github.repository_owner }}
image: hadolint
version: pr-${{ github.event.pull_request.head.sha }}
melange_package: true
publish:
permissions:
actions: read
contents: read
id-token: write
packages: write
if: github.event_name != 'pull_request'
uses: ./.github/workflows/_shared_publish.yml
with:
owner: ${{ github.repository_owner }}
image: hadolint
version: 1.${{ github.run_number }}.${{ github.run_attempt }}
revision: ${{ github.sha }}
melange_package: true
secrets:
dh_token: ${{ secrets.DOCKERHUB_TOKEN }}
gcr_token: ${{ secrets.GITHUB_TOKEN }}