From 93ed588013fdbad80d7600b0dfe2998d04900c05 Mon Sep 17 00:00:00 2001 From: Joseph Mearman Date: Mon, 14 Oct 2024 14:07:49 +0100 Subject: [PATCH 1/2] docs(cli): Update links and fix minor formatting issues in the CLI documentation --- content/docs/cli/index.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/docs/cli/index.mdx b/content/docs/cli/index.mdx index 67f6992b..484b0271 100644 --- a/content/docs/cli/index.mdx +++ b/content/docs/cli/index.mdx @@ -2,7 +2,7 @@ title: Unikraft CLI Companion Tool description: | Unikraft's companion command-line tool `kraft` has been modeled after many - popular package managers and build tools with the explicit aim of making it + popular package managers and build tools with the explicit aim of making it easy to build and manage your application as a unikernel. --- @@ -31,7 +31,7 @@ The installer detects your OS and suggests an appropriate installation procedure. -For more information on customizing your installation of `kraft`, please refer +For more information on customizing your installation of `kraft`, please refer to the [complete installation guide](/docs/cli/install). @@ -125,6 +125,6 @@ FLAGS Once installed and running, learn more about: -- [Building your first unikernel](#) -- [Packaging and distributing unikernels](#) -- [Running and managing multiple unikernels](#) +- [Building your first unikernel](/docs/cli/building) +- [Packaging and distributing unikernels](/docs/cli/packaging) +- [Running and managing multiple unikernels](/docs/cli/running) From d0ed3b8991a73004146fbb922e048c7a92a8c71d Mon Sep 17 00:00:00 2001 From: "exadev[bot]" <182929975+exadev[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 07:09:46 +0000 Subject: [PATCH 2/2] Create/Update dependabot.yaml --- .github/dependabot.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 00000000..8bc1baa0 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,30 @@ +--- +version: 2 +updates: + - package-ecosystem: 'npm' + directory: '/' + schedule: + interval: 'weekly' + groups: + production-dependencies: + dependency-type: 'production' + development-dependencies: + dependency-type: 'development' + - package-ecosystem: 'docker' + directory: '/' + schedule: + interval: 'weekly' + groups: + production-dependencies: + dependency-type: 'production' + development-dependencies: + dependency-type: 'development' + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: 'weekly' + groups: + production-dependencies: + dependency-type: 'production' + development-dependencies: + dependency-type: 'development'