Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ on:

env:
OPERATOR_NAME: "superset-operator"
RUST_NIGHTLY_TOOLCHAIN_VERSION: "nightly-2026-02-24"
RUST_NIGHTLY_TOOLCHAIN_VERSION: "nightly-2026-07-01"
NIX_PKG_MANAGER_VERSION: "2.33.3"
RUST_TOOLCHAIN_VERSION: "1.93.0"
RUST_TOOLCHAIN_VERSION: "1.95.0"
HADOLINT_VERSION: "v2.14.0"
PYTHON_VERSION: "3.14"
CARGO_TERM_COLOR: always
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_prek.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions: {}
env:
CARGO_TERM_COLOR: always
NIX_PKG_MANAGER_VERSION: "2.33.3"
RUST_TOOLCHAIN_VERSION: "nightly-2026-02-24"
RUST_TOOLCHAIN_VERSION: "nightly-2026-07-01"
HADOLINT_VERSION: "v2.14.0"
JINJA2_CLI_VERSION: "1.0.0"

Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repos:
- id: detect-private-key

- repo: https://github.com/EmbarkStudios/cargo-deny
rev: 8d76e7e991107da82c4a59cdc362a2739539f55d # 0.18.9
rev: 1c9ca2b643ee15722178c1350501aabb024dd6f3 # 0.19.9
hooks:
- id: cargo-deny
args: ["--all-features", "check", "advisories", "bans", "licenses", "sources"]
Expand All @@ -27,7 +27,7 @@ repos:
args: ["--strict"]

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: 192ad822316c3a22fb3d3cc8aa6eafa0b8488360 # 0.45.0
rev: a4d5d37e66ebcd6b3705204a1d6dbb56dea66338 # 0.49.0
hooks:
- id: markdownlint
types: [text]
Expand All @@ -47,15 +47,15 @@ repos:
# If you do not, you will need to delete the cached ruff binary shown in the
# error message
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 3b4bc031619cde2e0a9f3c4441ac7cc8227245a4 # 0.14.1
rev: c59bba8fb259db0fec2bbb77ad8ba51ea7341b56 # 0.15.20
hooks:
# Run the linter.
- id: ruff-check
# Run the formatter.
- id: ruff-format

- repo: https://github.com/rhysd/actionlint
rev: e7d448ef7507c20fc4c88a95d0c448b848cd6127 # 1.7.8
rev: 914e7df21a07ef503a81201c76d2b11c789d3fca # 1.7.12
hooks:
- id: actionlint

Expand Down Expand Up @@ -109,7 +109,7 @@ repos:
- id: cargo-rustfmt
name: cargo-rustfmt
language: system
entry: cargo +nightly-2026-02-24 fmt --all -- --check
entry: cargo +nightly-2026-07-01 fmt --all -- --check
stages: [pre-commit, pre-merge-commit]
pass_filenames: false
files: \.rs$
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"rust-analyzer.rustfmt.overrideCommand": [
"rustfmt",
"+nightly-2026-02-24",
"+nightly-2026-07-01",
"--edition",
"2024",
"--"
Expand Down
149 changes: 84 additions & 65 deletions Cargo.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions nix/sources.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# DO NOT EDIT, this file is generated by operator-templating
[toolchain]
channel = "1.93.0"
channel = "1.95.0"
profile = "default"
Loading