Skip to content

chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 #310

chore(deps): bump actions/checkout from 5.0.1 to 6.0.0

chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 #310

name: Check Alpine CHECKSUM
on:
pull_request:
paths:
- ".github/workflows/missing-checksum.yml"
- "**/alpine*/Dockerfile"
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Count number of Alpine Dockersfiles without CHECKSUM
run: |
git grep -n 'CHECKSUM=""' -- '*alpine*/Dockerfile' | sed -E 's/^([^:]+):([^:]+):\s*/::error file=\1,line=\2::Missing pre-built checksum/'
if [ "${PIPESTATUS[0]}" -eq 0 ]; then
exit 1
fi