Skip to content

Commit 6b937e6

Browse files
authored
Fix CD by changing the version of discourse/publish-rubygems-action used (#11)
There was a breaking change to the underlying ubuntu machine that is used by default to run CI/CD. This commit fixes that by changing the version of discourse/publish-rubygems-action used to publish the gem.
1 parent 0247bd7 commit 6b937e6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#running-a-workflow-based-on-the-conclusion-of-another-workflow
1414
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1515
steps:
16-
- uses: actions/checkout@8230315d06ad95c617244d2f265d237a1682d445
16+
- uses: actions/checkout@latest
1717
- name: Tag and Push Gem
1818
id: tag-and-push-gem
1919
# This action basically runs `bundle exec rake release` if there is not an existing tag in GitHub
2020
# for the current version of the gem, found in the `gemspec`.
21-
uses: discourse/publish-rubygems-action@a3753e0ecc0c9f53b87c993ac854de93b39c4b53
21+
uses: discourse/publish-rubygems-action@latest
2222
env:
2323
# This is provided to GitHub Actions automatically – you do not need to add this secret.
2424
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
automatic_namespaces (0.3.0)
4+
automatic_namespaces (0.3.1)
55
activesupport
66
packs-rails
77

@@ -114,7 +114,7 @@ GEM
114114
racc (~> 1.4)
115115
packs (0.0.6)
116116
sorbet-runtime
117-
packs-rails (0.0.1)
117+
packs-rails (0.0.3)
118118
activesupport
119119
packs
120120
railties
@@ -183,7 +183,7 @@ GEM
183183
rubocop-ast (1.23.0)
184184
parser (>= 3.1.1.0)
185185
ruby-progressbar (1.11.0)
186-
sorbet-runtime (0.5.10626)
186+
sorbet-runtime (0.5.10687)
187187
thor (1.2.1)
188188
timeout (0.3.0)
189189
tzinfo (2.0.5)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module AutomaticNamespaces
4-
VERSION = "0.3.0"
4+
VERSION = "0.3.1"
55
end

0 commit comments

Comments
 (0)