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 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 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 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