Update nginx:1.25.3 Docker digest to 2f5b3c6 #70
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: validate compose | |
on: | |
pull_request: | |
paths: | |
- 'docker-compose.yml' | |
- '.github/workflows/validate-compose.yml' | |
jobs: | |
validate-compose: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
- name: validate | |
shell: bash | |
run: | | |
shopt -s globstar | |
set -eux | |
for f in **/docker-compose.yml; do | |
if ! docker compose --file "$f" config --quiet; then | |
exit 1 | |
fi | |
done | |
exit 0 |