Skip to content

Commit 1e4c4fe

Browse files
authored
Merge pull request #74 from easolhq/hotfix/fix-github-action
Upgrade ruby version for Github Action
2 parents d5b8c5d + 788e73c commit 1e4c4fe

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
1919
- uses: ruby/setup-ruby@v1
2020
with:
21-
ruby-version: "3.1"
21+
ruby-version: "3.2"
2222
bundler-cache: true
2323

2424
- run: bundle install

.rubocop.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
require: rubocop-performance
22

33
AllCops:
4-
TargetRubyVersion: 3.0.4
4+
TargetRubyVersion: 3.1
55
# RuboCop has a bunch of cops enabled by default. This setting tells RuboCop
66
# to ignore them, so only the ones explicitly set in this file are enabled.
77
DisabledByDefault: true
@@ -324,6 +324,7 @@ Style/FrozenStringLiteralComment:
324324
Style/HashSyntax:
325325
Enabled: true
326326
EnforcedStyle: ruby19_no_mixed_keys
327+
EnforcedShorthandSyntax: either
327328

328329
Style/LambdaCall:
329330
Enabled: true

lib/canvas/version.rb

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 Canvas
4-
VERSION = "4.12.0"
4+
VERSION = "4.12.1"
55
end

0 commit comments

Comments
 (0)