Switch from C54xlarge Windows Docker Builder to M54xlarge and lock public_suffix to 5.1.1 on almalinux OSD image #177
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: dockerfile-lint | |
on: | |
pull_request: | |
paths: | |
- 'docker/ci/dockerfiles/current/**' | |
- 'docker/release/dockerfiles/**' | |
jobs: | |
dockerfile-lint-test_ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: jbergstroem/hadolint-gh-action@v1 | |
with: | |
dockerfile: 'docker/ci/dockerfiles/current/*.dockerfile' | |
annotate: false | |
dockerfile-lint-test_release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: jbergstroem/hadolint-gh-action@v1 | |
with: | |
dockerfile: 'docker/release/dockerfiles/*.dockerfile' | |
annotate: false |