ci: Fix image builds for products with dashes in their name #1462
Workflow file for this run
This file contains hidden or 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: pre-commit | |
| on: | |
| pull_request: | |
| env: | |
| # Keep in sync with across other repos like operator-rs and operator-templating | |
| RUST_TOOLCHAIN_VERSION: "nightly-2025-05-26" | |
| HADOLINT_VERSION: "v2.12.0" | |
| PYTHON_VERSION: "3.12" | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| - uses: stackabletech/actions/run-pre-commit@a5d39a4eb109bb6af3c152800701c86e98bfe1a5 # v0.10.1 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| rust: ${{ env.RUST_TOOLCHAIN_VERSION }} | |
| hadolint: ${{ env.HADOLINT_VERSION }} |