Skip to content

Commit d738c39

Browse files
committed
8.0.2
1 parent 0b75c13 commit d738c39

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

‎.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
6565
steps:
6666
- name: Install packages
67-
run: sudo apt-get update && sudo apt-get install --no-install-recommends -y build-essential git pkg-config google-chrome-stable
67+
run: sudo apt-get update && sudo apt-get install --no-install-recommends -y build-essential git libyaml-dev pkg-config google-chrome-stable
6868

6969
- name: Checkout code
7070
uses: actions/checkout@v4

‎Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ FROM base AS build
3030

3131
# Install packages needed to build gems
3232
RUN apt-get update -qq && \
33-
apt-get install --no-install-recommends -y build-essential git pkg-config && \
33+
apt-get install --no-install-recommends -y build-essential git libyaml-dev pkg-config && \
3434
rm -rf /var/lib/apt/lists /var/cache/apt/archives
3535

3636
# Install application gems

‎Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
source "https://rubygems.org"
22

33
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
4-
gem "rails", "~> 8.0.1"
4+
gem "rails", "~> 8.0.2"
55
# The modern asset pipeline for Rails [https://github.com/rails/propshaft]
66
gem "propshaft"
77
# Use sqlite3 as the database for Active Record

0 commit comments

Comments
 (0)
close