chore: bump dependencies
All checks were successful
actionlint check / actionlint check (pull_request) Successful in 7s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 3s
GitLeaks check / GitLeaks check (pull_request) Successful in 14s
hadolint check / hadolint check (pull_request) Successful in 15s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 7s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 8s
htmlhint check / htmlhint check (pull_request) Successful in 20s
markdownlint check / markdownlint check (pull_request) Successful in 32s
Prettier check / Prettier check (pull_request) Successful in 33s
checkov check / checkov check (pull_request) Successful in 1m20s
ShellCheck check / ShellCheck check (pull_request) Successful in 30s
Stylelint check / Stylelint check (pull_request) Successful in 27s
yamllint check / yamllint check (pull_request) Successful in 26s
Rust check / Rust check (pull_request) Successful in 12m52s

This commit is contained in:
2025-08-07 16:33:05 +02:00
parent e9a208a9d1
commit 744e23aa66
17 changed files with 187 additions and 91 deletions

View File

@ -16,7 +16,7 @@ impl From<ValidationErrors> for ErrorVec<ProjectError> {
validation_errors
.errors()
.iter()
.flat_map(|(&field, error_kind)| match field {
.flat_map(|(field, error_kind)| match field.as_ref() {
"title" => match error_kind {
ValidationErrorsKind::Field(validation_errors) => validation_errors
.iter()

View File

@ -17,7 +17,7 @@ impl From<ValidationErrors> for ErrorVec<SubtaskError> {
validation_errors
.errors()
.iter()
.flat_map(|(&field, error_kind)| match field {
.flat_map(|(field, error_kind)| match field.as_ref() {
"title" => match error_kind {
ValidationErrorsKind::Field(validation_errors) => validation_errors
.iter()

View File

@ -17,7 +17,7 @@ impl From<ValidationErrors> for ErrorVec<TaskError> {
validation_errors
.errors()
.iter()
.flat_map(|(&field, error_kind)| match field {
.flat_map(|(field, error_kind)| match field.as_ref() {
"title" => match error_kind {
ValidationErrorsKind::Field(validation_errors) => validation_errors
.iter()