From 901bd6ea24f56d203ff88316c99366772df5a1d1 Mon Sep 17 00:00:00 2001 From: Mathew Payne <2772944+GeekMasher@users.noreply.github.com> Date: Mon, 23 Sep 2024 10:35:06 +0000 Subject: [PATCH] feat(version): v2.9.0 --- .release.yml | 2 +- README.md | 8 ++++---- ghascompliance/__version__.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.release.yml b/.release.yml index 2769310..9bc673f 100644 --- a/.release.yml +++ b/.release.yml @@ -1,5 +1,5 @@ name: "policy-as-code" -version: "2.8.0" +version: "2.9.0" locations: - name: "Update Docs" diff --git a/README.md b/README.md index 70dbe05..7ba19de 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Here is how you can quickly setup policy-as-code. ```yaml # Policy as Code - name: Advance Security Policy as Code - uses: advanced-security/policy-as-code@v2.8.0 + uses: advanced-security/policy-as-code@v2.9.0 ``` > [!WARNING] @@ -61,7 +61,7 @@ The Policy as Code project is a self-contained Python based CLI tool. **Bash / Zsh:** ```bash -git clone --branch "v2.8.0" https://github.com/advanced-security/policy-as-code.git && cd ./policy-as-code +git clone --branch "v2.9.0" https://github.com/advanced-security/policy-as-code.git && cd ./policy-as-code ./policy-as-code --help ``` @@ -69,7 +69,7 @@ git clone --branch "v2.8.0" https://github.com/advanced-security/policy-as-code. **Powershell:** ```Powershell -git clone --branch "v2.8.0" https://github.com/advanced-security/policy-as-code.git +git clone --branch "v2.9.0" https://github.com/advanced-security/policy-as-code.git cd policy-as-code .\policy-as-code.ps1 --help @@ -128,7 +128,7 @@ Here is an example of using a simple yet cross-organization using Policy as Code ```yaml # Compliance - name: Advance Security Policy as Code - uses: advanced-security/policy-as-code@v2.8.0 + uses: advanced-security/policy-as-code@v2.9.0 with: # The owner/repo of where the policy is stored policy: GeekMasher/security-queries diff --git a/ghascompliance/__version__.py b/ghascompliance/__version__.py index bc35ef7..9f478f6 100644 --- a/ghascompliance/__version__.py +++ b/ghascompliance/__version__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -__version__ = "2.8.0" +__version__ = "2.9.0" __title__ = "GitHub Advanced Security Policy as Code" __name__ = "ghascompliance"