diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index d0a3f05..5a9d8c2 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -13,12 +13,12 @@ jobs: # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#running-a-workflow-based-on-the-conclusion-of-another-workflow if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - - uses: actions/checkout@8230315d06ad95c617244d2f265d237a1682d445 + - uses: actions/checkout@latest - name: Tag and Push Gem id: tag-and-push-gem # This action basically runs `bundle exec rake release` if there is not an existing tag in GitHub # for the current version of the gem, found in the `gemspec`. - uses: discourse/publish-rubygems-action@a3753e0ecc0c9f53b87c993ac854de93b39c4b53 + uses: discourse/publish-rubygems-action@latest env: # This is provided to GitHub Actions automatically – you do not need to add this secret. GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/Gemfile.lock b/Gemfile.lock index f951415..aca275b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - automatic_namespaces (0.3.0) + automatic_namespaces (0.3.1) activesupport packs-rails @@ -114,7 +114,7 @@ GEM racc (~> 1.4) packs (0.0.6) sorbet-runtime - packs-rails (0.0.1) + packs-rails (0.0.3) activesupport packs railties @@ -183,7 +183,7 @@ GEM rubocop-ast (1.23.0) parser (>= 3.1.1.0) ruby-progressbar (1.11.0) - sorbet-runtime (0.5.10626) + sorbet-runtime (0.5.10687) thor (1.2.1) timeout (0.3.0) tzinfo (2.0.5) diff --git a/lib/automatic_namespaces/version.rb b/lib/automatic_namespaces/version.rb index 1958d15..0e7ff15 100644 --- a/lib/automatic_namespaces/version.rb +++ b/lib/automatic_namespaces/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module AutomaticNamespaces - VERSION = "0.3.0" + VERSION = "0.3.1" end