From 6635c8f833f476805da00a3abadd50de6dc39f70 Mon Sep 17 00:00:00 2001 From: twokidsCarl Date: Mon, 6 Apr 2026 09:39:47 -0700 Subject: [PATCH 1/4] bump version to 0.5.14 Co-Authored-By: Claude Opus 4.6 --- lib/mana/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mana/version.rb b/lib/mana/version.rb index ba2cbb4..ac3ec0d 100644 --- a/lib/mana/version.rb +++ b/lib/mana/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Mana - VERSION = "0.5.13" + VERSION = "0.5.14" end From 897db48bcb5c06d49a2ccf96f23259842b228651 Mon Sep 17 00:00:00 2001 From: twokidsCarl Date: Mon, 6 Apr 2026 09:41:02 -0700 Subject: [PATCH 2/4] update Gemfile.lock for v0.5.14 Co-Authored-By: Claude Opus 4.6 --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index f9b040c..1fe8b3d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ruby-mana (0.5.13) + ruby-mana (0.5.14) binding_of_caller (>= 1.0) dotenv (>= 2.0) @@ -117,7 +117,7 @@ CHECKSUMS rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c rubocop (1.86.0) sha256=4ff1186fe16ebe9baff5e7aad66bb0ad4cabf5cdcd419f773146dbba2565d186 rubocop-ast (1.49.1) sha256=4412f3ee70f6fe4546cc489548e0f6fcf76cafcfa80fa03af67098ffed755035 - ruby-mana (0.5.13) + ruby-mana (0.5.14) ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33 simplecov (0.22.0) sha256=fe2622c7834ff23b98066bb0a854284b2729a569ac659f82621fc22ef36213a5 simplecov-html (0.13.2) sha256=bd0b8e54e7c2d7685927e8d6286466359b6f16b18cb0df47b508e8d73c777246 From 4064eade15eaee57d4dc08a750a4f003ce618f7e Mon Sep 17 00:00:00 2001 From: twokidsCarl Date: Mon, 6 Apr 2026 09:41:19 -0700 Subject: [PATCH 3/4] fix: disable bundler frozen mode in CI for version bumps Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2919d3e..e1a0d30 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,11 +17,13 @@ jobs: - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - bundler-cache: true + bundler-cache: false - name: Configure git run: | git config --global user.name "twokidsCarl" git config --global user.email "carl@anz.io" + - name: Install dependencies + run: bundle install --jobs 4 - name: Run tests run: bundle exec rspec - name: Check coverage From 616df1e9696f58190913d1a1b264aa04ff5c588c Mon Sep 17 00:00:00 2001 From: twokidsCarl Date: Mon, 6 Apr 2026 09:42:24 -0700 Subject: [PATCH 4/4] fix: add checkout step and id-token permission to Claude Code Action workflow The action needs the repo checked out and OIDC token for auth. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/autofix.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 00d8462..58623d0 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -19,8 +19,14 @@ jobs: contents: write pull-requests: write issues: write + id-token: write steps: - - uses: anthropics/claude-code-action@v1 + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 1 + - name: Run Claude Code + uses: anthropics/claude-code-action@v1 with: allowed_tools: "Bash,Read,Write,Edit,Glob,Grep" max_turns: 20