Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/build_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ on:
inputs:
ruby_version:
description: 'Ruby Version'
default: "3.2.2"
default: "3.3.4"
type: string
required: false
node_version:
description: 'Node version'
default: '18.17.1'
default: '22.14.0'
required: false
type: string
jobs:
Expand Down Expand Up @@ -55,6 +55,10 @@ jobs:
- run: bundle exec rake test_app
name: Create test app
shell: "bash"
- run: |
rm -f ./spec/decidim_dummy_app/app/services/dummy_signature_handler.rb
rm -f ./spec/decidim_dummy_app/app/services/dummy_sms_mobile_phone_validator.rb
name: Remove Initiative-dependent dummy files
- run: mkdir -p ./spec/decidim_dummy_app/tmp/screenshots
name: Create the screenshots folder
shell: "bash"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_additional_authorization_handler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ on:

env:
CI: "true"
RUBY_VERSION: 3.2.2
NODE_VERSION: 18.17.1
RUBY_VERSION: 3.3.4
NODE_VERSION: 22.14.0

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
inputs:
ruby_version:
description: 'Ruby Version'
default: "3.2.2"
default: "3.3.4"
required: false
type: string
test_command:
Expand All @@ -13,7 +13,7 @@ on:
chrome_version:
description: 'Chrome & Chromedriver version'
required: false
default: "126.0.6478.182"
default: "136.0.7103.92"
type: string

jobs:
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
ruby-version: ${{ inputs.ruby_version }}
- run: |
sudo apt update
sudo apt install libu2f-udev
sudo apt install libu2f-udev imagemagick
wget --no-verbose -O /tmp/chrome.deb https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${{inputs.chrome_version}}-1_amd64.deb
sudo dpkg -i /tmp/chrome.deb
rm /tmp/chrome.deb
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.3.4
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source "https://rubygems.org"

ruby RUBY_VERSION

gem "decidim", "~> 0.29.1"
gem "decidim", "~> 0.31.0"
gem "decidim-additional_authorization_handler", path: "."

gem "bootsnap", "~> 1.4"
Expand All @@ -13,7 +13,7 @@ gem "puma", ">= 6.3.1"
group :development, :test do
gem "byebug", "~> 11.0", platform: :mri

gem "decidim-dev", "~> 0.29.1"
gem "decidim-dev", "~> 0.31.0"
end

group :development do
Expand Down
Loading