Use env var for WORKBENCH_SESSION_INIT_VERSION or default to get-version
to fetch version
#1422
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
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
name: Lint Dockerfiles | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: lint-${{ matrix.config.product }}-${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- {product: 'product/base', os: 'ubuntu2204'} | |
- {product: 'product/base', os: 'centos7'} | |
- {product: 'product/pro', os: 'ubuntu2204'} | |
- {product: 'product/pro', os: 'centos7'} | |
- {product: 'workbench', os: 'ubuntu2204'} | |
- {product: 'connect', os: 'ubuntu2204'} | |
- {product: 'connect-content-init', os: 'ubuntu2204'} | |
- {product: 'package-manager', os: 'ubuntu2204'} | |
- {product: 'r-session-complete', os: 'ubuntu2204'} | |
- {product: 'workbench-session-init', os: 'ubuntu2204'} | |
- {product: 'workbench-for-microsoft-azure-ml', os: 'ubuntu2204'} | |
- {product: 'content/base', os: 'ubuntu1804'} | |
- {product: 'content/base', os: 'ubuntu2204'} | |
- {product: 'content/pro', os: 'ubuntu1804'} | |
- {product: 'content/pro', os: 'ubuntu2204'} | |
steps: | |
- name: Check Out Repo | |
uses: actions/checkout@v4 | |
- name: Run Hadolint | |
uses: hadolint/[email protected] | |
with: | |
dockerfile: ${{ matrix.config.product }}/Dockerfile.${{ matrix.config.os }} | |
config: ./hadolint.yaml |