From ac12789b128aab93148adaf9e7b6950a598478dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 12:07:19 +0000 Subject: [PATCH 1/3] build(deps): Bump the gha-deps group across 1 directory with 5 updates Bumps the gha-deps group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [PossibleLlama/workflows/.github/workflows/golang-binary.yaml](https://github.com/possiblellama/workflows) | `0.2.20` | `0.2.21` | | [PossibleLlama/workflows/.github/workflows/golang-linting.yaml](https://github.com/possiblellama/workflows) | `0.2.20` | `0.2.21` | | [PossibleLlama/workflows/.github/workflows/golang-testing-small.yaml](https://github.com/possiblellama/workflows) | `0.2.20` | `0.2.21` | | [PossibleLlama/workflows/.github/workflows/golang-security.yaml](https://github.com/possiblellama/workflows) | `0.2.20` | `0.2.21` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `6` | `7` | Updates `PossibleLlama/workflows/.github/workflows/golang-binary.yaml` from 0.2.20 to 0.2.21 - [Commits](https://github.com/possiblellama/workflows/compare/v0.2.20...v0.2.21) Updates `PossibleLlama/workflows/.github/workflows/golang-linting.yaml` from 0.2.20 to 0.2.21 - [Commits](https://github.com/possiblellama/workflows/compare/v0.2.20...v0.2.21) Updates `PossibleLlama/workflows/.github/workflows/golang-testing-small.yaml` from 0.2.20 to 0.2.21 - [Commits](https://github.com/possiblellama/workflows/compare/v0.2.20...v0.2.21) Updates `PossibleLlama/workflows/.github/workflows/golang-security.yaml` from 0.2.20 to 0.2.21 - [Commits](https://github.com/possiblellama/workflows/compare/v0.2.20...v0.2.21) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: PossibleLlama/workflows/.github/workflows/golang-binary.yaml dependency-version: 0.2.21 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gha-deps - dependency-name: PossibleLlama/workflows/.github/workflows/golang-linting.yaml dependency-version: 0.2.21 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gha-deps - dependency-name: PossibleLlama/workflows/.github/workflows/golang-testing-small.yaml dependency-version: 0.2.21 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gha-deps - dependency-name: PossibleLlama/workflows/.github/workflows/golang-security.yaml dependency-version: 0.2.21 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gha-deps - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/commit-all.yaml | 6 +++--- .github/workflows/commit-main.yaml | 6 +++--- .github/workflows/pull-request.yaml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/commit-all.yaml b/.github/workflows/commit-all.yaml index 06852d0..a21bebe 100644 --- a/.github/workflows/commit-all.yaml +++ b/.github/workflows/commit-all.yaml @@ -15,7 +15,7 @@ jobs: goarch: - amd64 - arm64 - uses: PossibleLlama/workflows/.github/workflows/golang-binary.yaml@v0.2.20 + uses: PossibleLlama/workflows/.github/workflows/golang-binary.yaml@v0.2.21 with: source-path: "./exec/cli/main.go" build-flags: "-ldflags=\"-w -s -X 'main.VERSION=$(git rev-list -1 HEAD)'\"" @@ -24,13 +24,13 @@ jobs: linting: name: Linting - uses: PossibleLlama/workflows/.github/workflows/golang-linting.yaml@v0.2.20 + uses: PossibleLlama/workflows/.github/workflows/golang-linting.yaml@v0.2.21 with: source-path: "./exec/cli/main.go" test-small: name: Test small - uses: PossibleLlama/workflows/.github/workflows/golang-testing-small.yaml@v0.2.20 + uses: PossibleLlama/workflows/.github/workflows/golang-testing-small.yaml@v0.2.21 with: enable-performance: false enable-fuzz: false diff --git a/.github/workflows/commit-main.yaml b/.github/workflows/commit-main.yaml index 74b975a..ee5b373 100644 --- a/.github/workflows/commit-main.yaml +++ b/.github/workflows/commit-main.yaml @@ -20,7 +20,7 @@ jobs: goarch: - amd64 - arm64 - uses: PossibleLlama/workflows/.github/workflows/golang-binary.yaml@v0.2.20 + uses: PossibleLlama/workflows/.github/workflows/golang-binary.yaml@v0.2.21 permissions: id-token: write contents: read @@ -37,7 +37,7 @@ jobs: name: Security checks permissions: security-events: write - uses: PossibleLlama/workflows/.github/workflows/golang-security.yaml@v0.2.20 + uses: PossibleLlama/workflows/.github/workflows/golang-security.yaml@v0.2.21 with: upload-sarif: true @@ -61,7 +61,7 @@ jobs: node-version: "lts/*" - name: Download app - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: path: . diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 66d0de3..339a40d 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -13,6 +13,6 @@ permissions: read-all jobs: security: name: Security checks - uses: PossibleLlama/workflows/.github/workflows/golang-security.yaml@v0.2.20 + uses: PossibleLlama/workflows/.github/workflows/golang-security.yaml@v0.2.21 with: upload-sarif: false From 5b0cd3e53e3fa9b1c8fe350352a1d2fa6033cf8d Mon Sep 17 00:00:00 2001 From: Chris Collier <29115613+PossibleLlama@users.noreply.github.com> Date: Mon, 15 Dec 2025 20:54:24 +0000 Subject: [PATCH 2/3] fix: Remove additional breaks --- exec/cli/main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/exec/cli/main.go b/exec/cli/main.go index 05e3e6e..f95bbf5 100644 --- a/exec/cli/main.go +++ b/exec/cli/main.go @@ -45,10 +45,8 @@ var rootCmd = &cobra.Command{ switch conventionType { case "angular": cTypes = model.TypeAngular - break case "conventionalcommit": cTypes = model.TypeConventionalCommit - break } commit := &model.Commit{} From e219c0344c1cc1bd74a0d20efbee6ae7b76a60c6 Mon Sep 17 00:00:00 2001 From: Chris Collier <29115613+PossibleLlama@users.noreply.github.com> Date: Mon, 15 Dec 2025 20:54:24 +0000 Subject: [PATCH 3/3] ci: Remove security checks while workflow is failing --- .github/workflows/commit-main.yaml | 8 -------- .github/workflows/pull-request.yaml | 18 ------------------ 2 files changed, 26 deletions(-) delete mode 100644 .github/workflows/pull-request.yaml diff --git a/.github/workflows/commit-main.yaml b/.github/workflows/commit-main.yaml index ee5b373..1f5528f 100644 --- a/.github/workflows/commit-main.yaml +++ b/.github/workflows/commit-main.yaml @@ -33,14 +33,6 @@ jobs: retention-days: 30 attestation: true - security: - name: Security checks - permissions: - security-events: write - uses: PossibleLlama/workflows/.github/workflows/golang-security.yaml@v0.2.21 - with: - upload-sarif: true - release: name: Release runs-on: ubuntu-latest diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml deleted file mode 100644 index 339a40d..0000000 --- a/.github/workflows/pull-request.yaml +++ /dev/null @@ -1,18 +0,0 @@ -name: "On pull request" - -on: - pull_request: - types: - - opened - - reopened - - edited - - synchronize - -permissions: read-all - -jobs: - security: - name: Security checks - uses: PossibleLlama/workflows/.github/workflows/golang-security.yaml@v0.2.21 - with: - upload-sarif: false