feat: Node.js 18.19.0, 21.3.0 #173
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
- 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 |