Skip to content

Commit 5d570d4

Browse files
author
Benedikt Artelt
committed
Merge commit 'da4cf6e1f57caa3f2ddf587c6e27a598031ef8ba' into codeocean-tuil
2 parents 32eece0 + da4cf6e commit 5d570d4

File tree

134 files changed

+3094
-1954
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+3094
-1954
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
2-
ARG RUBY_VERSION=3.3.5
2+
ARG RUBY_VERSION=3.3.6
33
FROM ghcr.io/rails/devcontainer/images/ruby:$RUBY_VERSION

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ jobs:
7878
env:
7979
RAILS_ENV: test
8080
CC_TEST_REPORTER_ID: true
81-
run: bundle exec rspec --color --format RSpec::Github::Formatter --format progress --require spec_helper --require rails_helper
81+
run: bundle exec rspec --color --format RSpec::Github::Formatter --format progress
8282

8383
- name: Upload coverage reports to Codecov
84-
uses: codecov/codecov-action@v4
84+
uses: codecov/codecov-action@v5
8585
if: ${{ success() || failure() }}
8686
with:
8787
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: "CodeQL"
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
77
# The branches below must be a subset of the branches above
8-
branches: [ master ]
8+
branches: [ main ]
99
schedule:
1010
- cron: '34 3 * * 6'
1111

.github/workflows/sentry-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Create a Sentry release
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66

77
jobs:
88
create-release:

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby-3.3.5
1+
ruby-3.3.6

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# docker run -d -p 80:80 -p 443:443 --name my-app -e RAILS_MASTER_KEY=<value from config/master.key> my-app
66

77
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
8-
ARG RUBY_VERSION=3.3.5
8+
ARG RUBY_VERSION=3.3.6
99
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base
1010

1111
# Rails app lives here

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ gem 'proformaxml', '~> 1.5.1'
3636
gem 'prometheus_exporter'
3737
gem 'puma'
3838
gem 'pundit'
39-
gem 'rails', '~> 7.2.1'
39+
gem 'rails', '~> 7.2.2'
4040
gem 'rails_admin'
4141
gem 'rails-i18n'
4242
gem 'rails-timeago'
@@ -52,7 +52,7 @@ gem 'sorcery'
5252
gem 'sprockets-rails'
5353
gem 'telegraf'
5454
gem 'terser', require: false
55-
gem 'tubesock'
55+
gem 'tubesock', github: 'openhpi/tubesock'
5656
gem 'turbolinks'
5757
gem 'whenever', require: false
5858
gem 'zxcvbn-ruby', require: 'zxcvbn'

0 commit comments

Comments
 (0)