Skip to content

Commit

Permalink
⬆️ Ruby 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ledermann committed Dec 28, 2024
1 parent 2e9a098 commit 6af8535
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require:
- rubocop-graphql

AllCops:
TargetRubyVersion: 3.3
TargetRubyVersion: 3.4
Exclude:
- Gemfile
- 'vendor/**/*'
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.6
3.4.1
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3.6-alpine AS builder
FROM ruby:3.4.1-alpine AS builder
RUN apk add --no-cache build-base

WORKDIR /tibber-collector
Expand All @@ -8,7 +8,7 @@ RUN bundle config --local frozen 1 && \
bundle install -j4 --retry 3 && \
bundle clean --force

FROM ruby:3.3.6-alpine
FROM ruby:3.4.1-alpine
LABEL maintainer="[email protected]"

# Add tzdata to get correct timezone
Expand Down
3 changes: 3 additions & 0 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ def mock_env(partial_env_hash)
ENV.replace old
end
end

# Silence deprecation warnings caused by the `influxdb-client` gem
Warning[:deprecated] = false

0 comments on commit 6af8535

Please sign in to comment.