Add note about setting correct kubelet work dir for k0s to documentation & fix name of helm parameter in docs #593
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: | |
| merge_group: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| NIX_PKG_MANAGER_VERSION: "2.30.0" | |
| RUST_TOOLCHAIN_VERSION: "nightly-2025-10-23" | |
| HADOLINT_VERSION: "v2.14.0" | |
| PYTHON_VERSION: "3.14" | |
| JINJA2_CLI_VERSION: "0.8.2" | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install host dependencies | |
| uses: awalsh128/cache-apt-pkgs-action@acb598e5ddbc6f68a970c5da0688d2f3a9f04d05 # v1.6.0 | |
| with: | |
| packages: protobuf-compiler krb5-user libkrb5-dev libclang-dev liblzma-dev libssl-dev pkg-config apt-transport-https | |
| version: ubuntu-latest | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - uses: stackabletech/actions/run-pre-commit@29bea1b451c0c2e994bd495969286f95bf49ed6a # v0.11.0 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| rust: ${{ env.RUST_TOOLCHAIN_VERSION }} | |
| hadolint: ${{ env.HADOLINT_VERSION }} | |
| nix: ${{ env.NIX_PKG_MANAGER_VERSION }} | |
| nix-github-token: ${{ secrets.GITHUB_TOKEN }} | |
| jinja2-cli: ${{ env.JINJA2_CLI_VERSION }} |