Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
required: false
node_version:
description: 'Node version'
default: '18.17.1'
default: '22.14.0'
required: false
type: string
jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
env:
CI: "true"
RUBY_VERSION: 3.3.4
NODE_VERSION: 18.17.1
NODE_VERSION: 22.14.0

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
services:
validator:
image: ghcr.io/validator/validator:latest
ports: ["8888:8888"]
ports: [ "8888:8888" ]
postgres:
image: postgres:14
ports: ["5432:5432"]
Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# frozen_string_literal: true

DECIDIM_VERSION = "~> 0.30.1"
DECIDIM_VERSION = "~> 0.31.0"

source "https://rubygems.org"

ruby RUBY_VERSION

gem "decidim", DECIDIM_VERSION
gem "decidim-extra_user_fields", path: "."
gem "decidim-initiatives", DECIDIM_VERSION

gem "bootsnap", "~> 1.7"
gem "puma", ">= 6.3.1"
Expand Down
Loading