From 1f290c518a2870adbc1fa87e62be431c4451701a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Guilherme=20Vanz?= Date: Mon, 8 May 2023 10:07:41 -0300 Subject: [PATCH 1/2] chore: updates github workflow in use. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates the Github workflow to use the latest version of the reusable workflows available in the Kubewarden github-actions repository. Signed-off-by: José Guilherme Vanz --- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dc9501d..f525543 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.3 + uses: kubewarden/github-actions/.github/workflows/reusable-test-policy-rust.yml@v3.1.4 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.3 + uses: kubewarden/github-actions/.github/workflows/reusable-release-policy-rust.yml@v3.1.4 with: oci-target: ghcr.io/${{ github.repository_owner }}/policies/pod-runtime diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fba148e..a13ae7d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.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.3 + uses: kubewarden/github-actions/.github/workflows/reusable-test-policy-rust.yml@v3.1.4 From 5f56203ea6ac2c97cf4bc97a83ab31dbdade6757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Guilherme=20Vanz?= Date: Mon, 8 May 2023 10:09:03 -0300 Subject: [PATCH 2/2] Bump v0.2.1 version. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the version in the Cargo.toml file to v0.2.1 Signed-off-by: José Guilherme Vanz --- Cargo.lock | 2 +- Cargo.toml | 2 +- artifacthub-pkg.yml | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1c5ac8f..427e08f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -544,7 +544,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "pod-runtime-class-policy" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "k8s-openapi", diff --git a/Cargo.toml b/Cargo.toml index 6df21e7..e73ffff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pod-runtime-class-policy" -version = "0.2.0" +version = "0.2.1" authors = ["José Guilherme Vanz "] edition = "2021" diff --git a/artifacthub-pkg.yml b/artifacthub-pkg.yml index ed06f18..da834b9 100644 --- a/artifacthub-pkg.yml +++ b/artifacthub-pkg.yml @@ -4,29 +4,29 @@ # # This config can be saved to its default location with: # kwctl scaffold artifacthub > artifacthub-pkg.yml -version: 0.2.0 +version: 0.2.1 name: pod-runtime displayName: Pod Runtime -createdAt: 2023-04-27T13:32:30.914111273Z +createdAt: 2023-05-08T13:07:00.327651974Z description: Policy that controls the usage of Pod runtimeClass license: Apache-2.0 homeURL: https://github.com/kubewarden/pod-runtime-class-policy containersImages: - name: policy - image: ghcr.io/kubewarden/policies/pod-runtime:v0.2.0 + image: ghcr.io/kubewarden/policies/pod-runtime:v0.2.1 keywords: - pod - runtime - container runtime links: - name: policy - url: https://github.com/kubewarden/pod-runtime-class-policy/releases/download/v0.2.0/policy.wasm + url: https://github.com/kubewarden/pod-runtime-class-policy/releases/download/v0.2.1/policy.wasm - name: source url: https://github.com/kubewarden/pod-runtime-class-policy install: | The policy can be obtained using [`kwctl`](https://github.com/kubewarden/kwctl): ```console - kwctl pull ghcr.io/kubewarden/policies/pod-runtime:v0.2.0 + kwctl pull ghcr.io/kubewarden/policies/pod-runtime:v0.2.1 ``` maintainers: - name: Kubewarden developers