Maintenance: Updated Ruby dependency to 2.6.5.
This commit is contained in:
parent
af10e5d1d2
commit
e865826810
5 changed files with 12 additions and 9 deletions
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
|
@ -47,7 +47,7 @@ jobs:
|
||||||
- name: Set up Ruby
|
- name: Set up Ruby
|
||||||
uses: ruby/setup-ruby@v1
|
uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
ruby-version: 2.5.5
|
ruby-version: 2.6.5
|
||||||
- name: Increase MySQL max_allowed_packet to 1GB (workaround for unknown/missing service option)
|
- name: Increase MySQL max_allowed_packet to 1GB (workaround for unknown/missing service option)
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install -y mysql-client
|
sudo apt-get install -y mysql-client
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
image: registry.znuny.com/docker/zammad-ruby:2.5.5
|
image: registry.znuny.com/docker/zammad-ruby:2.6.5
|
||||||
|
|
||||||
# Global variables added to the ENV of each job
|
# Global variables added to the ENV of each job
|
||||||
variables:
|
variables:
|
||||||
|
@ -60,8 +60,11 @@ variables:
|
||||||
alias: postgresql
|
alias: postgresql
|
||||||
|
|
||||||
# Cache gems in between jobs and pipelines
|
# Cache gems in between jobs and pipelines
|
||||||
|
# ATTENTION: We use a combination of the Ruby major and minor version number
|
||||||
|
# as a key for the cache to avoid cache growth and incompatibilities between
|
||||||
|
# the gems. Search hook: 2.6.5 (change it when updating the Ruby version too)
|
||||||
cache:
|
cache:
|
||||||
key: "ruby25"
|
key: "ruby26"
|
||||||
paths:
|
paths:
|
||||||
- vendor/ruby
|
- vendor/ruby
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
2.5.5
|
2.6.5
|
||||||
|
|
2
Gemfile
2
Gemfile
|
@ -1,7 +1,7 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
# core - base
|
# core - base
|
||||||
ruby '2.5.5'
|
ruby '2.6.5'
|
||||||
gem 'rails', '5.2.4.1'
|
gem 'rails', '5.2.4.1'
|
||||||
|
|
||||||
# core - rails additions
|
# core - rails additions
|
||||||
|
|
|
@ -263,7 +263,7 @@ GEM
|
||||||
addressable
|
addressable
|
||||||
faraday
|
faraday
|
||||||
json (>= 1.8)
|
json (>= 1.8)
|
||||||
libv8 (6.7.288.46.1)
|
libv8 (7.3.492.27.1)
|
||||||
listen (3.1.5)
|
listen (3.1.5)
|
||||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||||
rb-inotify (~> 0.9, >= 0.9.7)
|
rb-inotify (~> 0.9, >= 0.9.7)
|
||||||
|
@ -287,8 +287,8 @@ GEM
|
||||||
mimemagic (0.3.3)
|
mimemagic (0.3.3)
|
||||||
mini_mime (1.0.2)
|
mini_mime (1.0.2)
|
||||||
mini_portile2 (2.4.0)
|
mini_portile2 (2.4.0)
|
||||||
mini_racer (0.2.4)
|
mini_racer (0.2.9)
|
||||||
libv8 (>= 6.3)
|
libv8 (>= 6.9.411)
|
||||||
minitest (5.13.0)
|
minitest (5.13.0)
|
||||||
msgpack (1.2.4)
|
msgpack (1.2.4)
|
||||||
multi_json (1.14.1)
|
multi_json (1.14.1)
|
||||||
|
@ -666,7 +666,7 @@ DEPENDENCIES
|
||||||
zendesk_api
|
zendesk_api
|
||||||
|
|
||||||
RUBY VERSION
|
RUBY VERSION
|
||||||
ruby 2.5.5p157
|
ruby 2.6.5p114
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
1.17.3
|
1.17.3
|
||||||
|
|
Loading…
Reference in a new issue