File tree 2 files changed +10
-0
lines changed
template/.github/workflows
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -23,3 +23,10 @@ hadolint_version: v2.12.0
23
23
# If you change the Python version here, make sure to also change it in
24
24
# .github/workflows/pr_pre-commit.yml
25
25
python_version : 3.12
26
+
27
+ # This Nix version is used in the operators pre-commit workflow as they require
28
+ # Nix to run some checks. Check for new versions here:
29
+ # https://github.com/NixOS/nix/tags
30
+ # Usually the latest version should just work and as such the version here can
31
+ # be bumped without any constraints.
32
+ nix_pkg_manager_version : 2.28.3
Original file line number Diff line number Diff line change 6
6
7
7
env:
8
8
CARGO_TERM_COLOR: always
9
+ NIX_PKG_MANAGER_VERSION: "{[ nix_pkg_manager_version }]"
9
10
RUST_TOOLCHAIN_VERSION: "{[ rust_nightly_version }]"
10
11
HADOLINT_VERSION: "{[ hadolint_version }]"
11
12
PYTHON_VERSION: "{[ python_version }]"
29
30
python-version: ${{ env.PYTHON_VERSION }}
30
31
rust: ${{ env.RUST_TOOLCHAIN_VERSION }}
31
32
hadolint: ${{ env.HADOLINT_VERSION }}
33
+ nix: ${{ env.NIX_PKG_MANAGER_VERSION }}
34
+ nix-github-token: ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments