From 92072c5857c36e0144857ebd9c8a5f4e0d46ec52 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 02:11:17 +0000 Subject: [PATCH] fix(deps): update all non-major dependencies --- .github/workflows/release.yml | 4 ++-- .github/workflows/tests.yml | 2 +- Cargo.lock | 11 ++--------- Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8a30090..cbc7fd3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: test: name: run tests and linters - uses: kubewarden/github-actions/.github/workflows/reusable-test-policy-rust.yml@v3.1.12 + uses: kubewarden/github-actions/.github/workflows/reusable-test-policy-rust.yml@v3.1.14 release: needs: test @@ -23,6 +23,6 @@ jobs: # Required by cosign keyless signing id-token: write - uses: kubewarden/github-actions/.github/workflows/reusable-release-policy-rust.yml@v3.1.12 + uses: kubewarden/github-actions/.github/workflows/reusable-release-policy-rust.yml@v3.1.14 with: oci-target: ghcr.io/${{ github.repository_owner }}/policies/apparmor-psp diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6ee39dd..0730471 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,4 +3,4 @@ name: Continuous integration jobs: test: name: run tests and linters - uses: kubewarden/github-actions/.github/workflows/reusable-test-policy-rust.yml@v3.1.12 + uses: kubewarden/github-actions/.github/workflows/reusable-test-policy-rust.yml@v3.1.14 diff --git a/Cargo.lock b/Cargo.lock index 99a014c..4722e22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -37,12 +37,6 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" -[[package]] -name = "bytes" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" - [[package]] name = "cfg-if" version = "1.0.0" @@ -108,12 +102,11 @@ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "k8s-openapi" -version = "0.20.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edc3606fd16aca7989db2f84bb25684d0270c6d6fa1dbcd0025af7b4130523a6" +checksum = "301f367a36090b7dfdaac248ee3ed4f14a6a8292e7bec0f1c5e6e2e1f181cd33" dependencies = [ "base64", - "bytes", "chrono", "serde", "serde-value", diff --git a/Cargo.toml b/Cargo.toml index 866bb68..4e12ae9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ crate-type = ["cdylib"] [dependencies] anyhow = "1.0" -k8s-openapi = { version = "0.20.0", default_features = false, features = ["v1_27"] } +k8s-openapi = { version = "0.21.0", default_features = false, features = ["v1_27"] } kubewarden-policy-sdk = { version = "0.9.9", default_features = false } serde_json = "1.0" serde = { version = "1.0", features = ["derive"] }