Skip to content

Commit c4dc620

Browse files
committed
chore: resolve merge conflicts with master
2 parents 6f81722 + 88fc3db commit c4dc620

99 files changed

Lines changed: 2718 additions & 539 deletions

File tree

Some content is hidden

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

.github/workflows/ruby.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ jobs:
4545
id: playwright-cache
4646
with:
4747
path: ~/.cache/ms-playwright
48-
key: playwright-${{ runner.os }}-1.58.0
48+
key: playwright-${{ runner.os }}-1.59.0
4949

5050
- name: Install Playwright browsers (cache miss)
5151
if: steps.playwright-cache.outputs.cache-hit != 'true'
52-
run: npx --yes playwright@1.58.0 install --with-deps chromium
52+
run: npx --yes playwright@1.59.0 install --with-deps chromium
5353

5454
- name: Install Playwright system deps (cache hit)
5555
if: steps.playwright-cache.outputs.cache-hit == 'true'
56-
run: npx --yes playwright@1.58.0 install-deps chromium
56+
run: npx --yes playwright@1.59.0 install-deps chromium
5757

5858
- name: Setup test databases
5959
env:
@@ -78,7 +78,7 @@ jobs:
7878
cp coverage/.resultset.json coverage/resultset-${{ matrix.ci_node_index }}.json
7979
8080
- name: Upload coverage artifacts
81-
uses: actions/upload-artifact@v6
81+
uses: actions/upload-artifact@v7
8282
with:
8383
name: coverage-${{ matrix.ci_node_index }}
8484
path: coverage/resultset-${{ matrix.ci_node_index }}.json
@@ -98,7 +98,7 @@ jobs:
9898
bundler-cache: true
9999

100100
- name: Download all coverage artifacts
101-
uses: actions/download-artifact@v7
101+
uses: actions/download-artifact@v8
102102
with:
103103
path: coverage-results
104104

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@ vendor/bundle
5959
yarn-debug.log*
6060
.yarn-integrity
6161

62-
# Git worktrees
63-
.worktrees
62+
# Worktrees
63+
.worktrees/

Gemfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ gem 'simple_form'
4545

4646
gem 'terser'
4747

48-
gem 'pagy', '~> 43.2'
48+
gem 'pagy', '~> 43.5'
4949

5050
gem 'icalendar'
5151
gem 'tzinfo-data'
@@ -58,7 +58,7 @@ gem 'faraday'
5858

5959
gem 'stripe'
6060

61-
gem 'rails-html-sanitizer', '~> 1.6.2'
61+
gem 'rails-html-sanitizer', '~> 1.7.0'
6262

6363
# Use the Puma web server [https://github.com/puma/puma]
6464
gem 'puma', '~> 7.2'
@@ -69,6 +69,7 @@ gem 'turbo-rails'
6969
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
7070
gem 'stimulus-rails'
7171
gem 'public_activity'
72+
gem 'view_component'
7273

7374
group :development do
7475
gem 'better_errors'

0 commit comments

Comments
 (0)