Skip to content

Commit 90b1e49

Browse files
committed
fix: update to ruby 3.0.6
1 parent d80eb79 commit 90b1e49

File tree

5 files changed

+18
-17
lines changed

5 files changed

+18
-17
lines changed

.github/workflows/ci_cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ env:
55
CI: "true"
66
SIMPLECOV: "true"
77
RSPEC_FORMAT: "documentation"
8-
RUBY_VERSION: 3.0.2
8+
RUBY_VERSION: 3.0.6
99
RAILS_ENV: test
1010
NODE_VERSION: 16.9.1
1111
RUBYOPT: '-W:no-deprecated'

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.2
1+
3.0.6

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.2.2-slim as builder
1+
FROM ruby:3.0.6-slim as builder
22

33
ENV RAILS_ENV=production \
44
SECRET_KEY_BASE=dummy
@@ -33,7 +33,7 @@ RUN rm -rf node_modules tmp/cache vendor/bundle spec \
3333
&& find /usr/local/bundle/gems/ -type d -name "spec" -prune -exec rm -rf {} \; \
3434
&& rm -rf log/*.log
3535

36-
FROM ruby:3.2.2-slim as runner
36+
FROM ruby:3.0.6-slim as runner
3737

3838
ENV RAILS_ENV=production \
3939
SECRET_KEY_BASE=dummy \

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ gem "decidim-initiatives", "~> #{DECIDIM_VERSION}.0"
1616

1717
# External Decidim gems
1818
gem "decidim-blog_author_petition", git: "https://github.com/OpenSourcePolitics/decidim-module-blog_author_petition.git", branch: "main"
19-
gem "decidim-decidim_awesome", git: "https://github.com/decidim-ice/decidim-module-decidim_awesome.git", branch: "main"
19+
gem "decidim-decidim_awesome", git: "https://github.com/decidim-ice/decidim-module-decidim_awesome.git", tag: "v0.9.2"
2020
gem "decidim-initiative_status", git: "https://github.com/OpenSourcePolitics/decidim-module-initiative_status.git", branch: "main"
2121
gem "decidim-spam_detection"
22-
gem "decidim-term_customizer", git: "https://github.com/armandfardeau/decidim-module-term_customizer.git", branch: "fix/precompile-on-docker-0.27"
22+
gem "decidim-term_customizer", git: "https://github.com/OpenSourcePolitics/decidim-module-term_customizer.git", branch: "fix/email_with_precompile"
2323
gem "decidim-transparent_trash", git: "https://github.com/OpenSourcePolitics/decidim-module-transparent_trash.git", branch: "master"
2424

2525
# Omniauth gems

Gemfile.lock

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,26 @@ GIT
1414
decidim-initiative_status (0.1)
1515
decidim-core (~> 0.27)
1616

17+
GIT
18+
remote: https://github.com/OpenSourcePolitics/decidim-module-term_customizer.git
19+
revision: 27f4f3f805b59571451f4d911620edbac762bb66
20+
branch: fix/email_with_precompile
21+
specs:
22+
decidim-term_customizer (0.27.0)
23+
decidim-admin (~> 0.27.0)
24+
decidim-core (~> 0.27.0)
25+
1726
GIT
1827
remote: https://github.com/OpenSourcePolitics/decidim-module-transparent_trash.git
1928
revision: 6e443678a0aecdc9d852dfa48dc103983c930a5c
2029
branch: master
2130
specs:
2231
decidim-transparent_trash (0.0.2)
2332

24-
GIT
25-
remote: https://github.com/armandfardeau/decidim-module-term_customizer.git
26-
revision: 41f6c0fa95cc26c7f0dbe317d48e83723cb08b1b
27-
branch: fix/precompile-on-docker-0.27
28-
specs:
29-
decidim-term_customizer (0.27.0)
30-
decidim-admin (~> 0.27.0)
31-
decidim-core (~> 0.27.0)
32-
3333
GIT
3434
remote: https://github.com/decidim-ice/decidim-module-decidim_awesome.git
3535
revision: aa01fdab225ae7a5e7de6fc5d529f7c236376c0c
36-
branch: main
36+
tag: v0.9.2
3737
specs:
3838
decidim-decidim_awesome (0.9.2)
3939
decidim-admin (>= 0.26.0, < 0.28)
@@ -1007,6 +1007,7 @@ PLATFORMS
10071007
arm64-darwin-22
10081008
x86_64-darwin-20
10091009
x86_64-darwin-21
1010+
x86_64-darwin-22
10101011
x86_64-linux
10111012

10121013
DEPENDENCIES
@@ -1057,7 +1058,7 @@ DEPENDENCIES
10571058
web-console (= 4.2)
10581059

10591060
RUBY VERSION
1060-
ruby 3.0.2p107
1061+
ruby 3.0.6p216
10611062

10621063
BUNDLED WITH
10631064
2.4.9

0 commit comments

Comments
 (0)