Skip to content

Commit

Permalink
update dependecies
Browse files Browse the repository at this point in the history
  • Loading branch information
k0va1 committed Dec 15, 2024
1 parent 6df7412 commit 7355643
Show file tree
Hide file tree
Showing 8 changed files with 257 additions and 233 deletions.
4 changes: 2 additions & 2 deletions .dockerdev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG RUBY_VERSION
FROM ruby:$RUBY_VERSION-slim-buster
FROM ruby:$RUBY_VERSION-slim-bookworm

ARG PG_MAJOR
ARG NODE_MAJOR
Expand Down Expand Up @@ -35,7 +35,7 @@ RUN apt-get update -qq && DEBIAN_FRONTEND=noninteractive apt-get -yq dist-upgrad

# Add PostgreSQL to sources list
RUN curl -sSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
&& echo 'deb http://apt.postgresql.org/pub/repos/apt/ buster-pgdg main' $PG_MAJOR > /etc/apt/sources.list.d/pgdg.list
&& echo 'deb http://apt.postgresql.org/pub/repos/apt/ bookworm-pgdg main' $PG_MAJOR > /etc/apt/sources.list.d/pgdg.list

# Add NodeJS to sources list
RUN curl -sL https://deb.nodesource.com/setup_$NODE_MAJOR.x | bash -
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
name: Tests
runs-on: ubuntu-latest
container:
image: ruby:3.2.2
image: ruby:3.3.6

services:
postgres:
image: postgres:15.0
image: postgres:17
env:
POSTGRES_PASSWORD: postgres
ports:
Expand All @@ -22,7 +22,7 @@ jobs:
--health-retries 5
redis:
image: redis:7.0
image: redis:6.2
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 20
node-version: 22

- name: Install yarn
run: npm install -g yarn
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "3.2.2"
ruby "3.3.6"

gem "bootsnap", require: false
gem "bundler-audit"
Expand All @@ -24,7 +24,7 @@ gem "sidekiq-scheduler"
gem "strong_migrations"

group :development, :test do
gem "bullet", "~> 7.1.3"
gem "bullet", "~> 8.0.0"
gem "debug"
gem "factory_bot_rails"
gem "faker"
Expand Down
Loading

0 comments on commit 7355643

Please sign in to comment.