Skip to content

feat: Node.js 20.19.3 #268

feat: Node.js 20.19.3

feat: Node.js 20.19.3 #268

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- 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