Skip to content

build(deps): bump docker/login-action from 4.5.2 to 4.6.0 #1006

build(deps): bump docker/login-action from 4.5.2 to 4.6.0

build(deps): bump docker/login-action from 4.5.2 to 4.6.0 #1006

Workflow file for this run

name: Lint
on:
push:
branches:
- 3.x
pull_request:
branches:
- 3.x
jobs:
lint_markdown:
name: Run markdown linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Lint markdown
uses: DavidAnson/markdownlint-cli2-action@v24.1.0
with:
globs: |
README.md
CONTRIBUTING.md
containers/README.md
lint:
strategy:
matrix:
step: [codespell, gitignore, ruff-check, ruff-format, shellcheck, whitespace, shfmt, clang-format]
name: Run ${{ matrix.step }} linter
runs-on: ubuntu-latest
container:
image: ghcr.io/openhpc/ohpc-lint:latest
steps:
- uses: actions/checkout@v7
- name: Run ${{ matrix.step }}
run: make -C tests/ci/ ${{ matrix.step }}-lint