From bc9b059bb72f4d0ed3aa40f17a97c184fac6ab5c Mon Sep 17 00:00:00 2001 From: GeekMasher Date: Thu, 27 Feb 2025 01:13:31 +0000 Subject: [PATCH 1/2] feat(version): v0.5.0 --- .release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.release.yml b/.release.yml index c7a2b1d..8e65e5d 100644 --- a/.release.yml +++ b/.release.yml @@ -1,5 +1,5 @@ name: "patch-release-me" -version: "0.4.1" +version: "0.5.0" repository: "42ByteLabs/patch-release-me" ecosystems: From 18822bcece0a39ee84eafbe5577e944320266b75 Mon Sep 17 00:00:00 2001 From: GeekMasher Date: Thu, 27 Feb 2025 01:13:47 +0000 Subject: [PATCH 2/2] feat(ci): Add Security CI Workflow --- .github/workflows/security.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/security.yml diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml new file mode 100644 index 0000000..8eafc1e --- /dev/null +++ b/.github/workflows/security.yml @@ -0,0 +1,24 @@ +name: Security + +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + workflow_dispatch: {} + schedule: + - cron: '0 14 * * 2' + +env: + CARGO_TERM_COLOR: always + +permissions: + contents: read + security-events: write + +jobs: + semgrep: + # https://github.com/42ByteLabs/.github/blob/main/.github/workflows/semgrep.yml + uses: 42ByteLabs/.github/.github/workflows/semgrep.yml@main + secrets: inherit +