From 7352c874dab38fe0f60be1aaa6bac3bd10c54a11 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Thu, 15 May 2025 07:00:04 +0900 Subject: [PATCH] fix: add a packageRule for wash --- default.json | 12 ++++++++++++ jsonnet/default.jsonnet | 7 +++++++ 2 files changed, 19 insertions(+) diff --git a/default.json b/default.json index 668b184f..695d51cc 100644 --- a/default.json +++ b/default.json @@ -655,6 +655,18 @@ "**/aqua.yml" ] }, + { + "allowedVersions": "/^wash-v/", + "matchDepNames": [ + "wasmCloud/wasmCloud/wash" + ], + "matchFileNames": [ + "**/.aqua.yaml", + "**/.aqua.yml", + "**/aqua.yaml", + "**/aqua.yml" + ] + }, { "allowedVersions": "/^cmd\\/protoc-gen-go-grpc\\//", "matchDepNames": [ diff --git a/jsonnet/default.jsonnet b/jsonnet/default.jsonnet index 256707a6..9ed32ea8 100644 --- a/jsonnet/default.jsonnet +++ b/jsonnet/default.jsonnet @@ -30,6 +30,13 @@ local utils = import 'utils.libsonnet'; 'external-secrets/external-secrets/esoctl', ], }, + { + allowedVersions: '/^wash-v/', + matchFileNames: utils.aquaYAMLMatchPaths, + matchDepNames: [ + 'wasmCloud/wasmCloud/wash', + ], + }, { allowedVersions: '/^cmd\\/protoc-gen-go-grpc\\//', matchFileNames: utils.aquaYAMLMatchPaths,