Skip to content

Commit 4f42471

Browse files
committed
Upgrade & cleanup deps
1 parent 72b3502 commit 4f42471

File tree

17 files changed

+256
-321
lines changed

17 files changed

+256
-321
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v4
15-
14+
uses: actions/checkout@v5
15+
1616
- name: Set up Node.js
1717
uses: actions/setup-node@v4
1818
with:
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout code
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040

4141
- name: Set up Ruby
4242
uses: ruby/setup-ruby@v1
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- name: Checkout code
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555

5656
- name: Set up Ruby
5757
uses: ruby/setup-ruby@v1
@@ -77,7 +77,7 @@ jobs:
7777
run: sudo apt-get update && sudo apt-get install --no-install-recommends -y build-essential git node-gyp pkg-config python-is-python3 google-chrome-stable
7878

7979
- name: Checkout code
80-
uses: actions/checkout@v4
80+
uses: actions/checkout@v5
8181

8282
- name: Set up Node.js
8383
uses: actions/setup-node@v4

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
BUNDLE_ONLY: deploy
2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Set up Docker Buildx
2525
uses: docker/setup-buildx-action@v3

Gemfile.lock

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ GEM
112112
ed25519 (1.4.0)
113113
erb (5.0.2)
114114
erubi (1.13.1)
115-
et-orbi (1.2.11)
115+
et-orbi (1.3.0)
116116
tzinfo
117117
factory_bot (6.5.4)
118118
activesupport (>= 6.1.0)
@@ -133,9 +133,9 @@ GEM
133133
pp (>= 0.6.0)
134134
rdoc (>= 4.0.0)
135135
reline (>= 0.4.2)
136-
jbuilder (2.13.0)
137-
actionview (>= 5.0.0)
138-
activesupport (>= 5.0.0)
136+
jbuilder (2.14.0)
137+
actionview (>= 7.0.0)
138+
activesupport (>= 7.0.0)
139139
js-routes (2.3.5)
140140
railties (>= 5)
141141
sorbet-runtime
@@ -268,7 +268,7 @@ GEM
268268
rdoc (6.14.2)
269269
erb
270270
psych (>= 4.0.0)
271-
regexp_parser (2.11.0)
271+
regexp_parser (2.11.1)
272272
reline (0.6.2)
273273
io-console (~> 0.5)
274274
rexml (3.4.1)
@@ -289,7 +289,7 @@ GEM
289289
rspec-mocks (~> 3.13)
290290
rspec-support (~> 3.13)
291291
rspec-support (3.13.4)
292-
rubocop (1.79.1)
292+
rubocop (1.79.2)
293293
json (~> 2.3)
294294
language_server-protocol (~> 3.17.0.2)
295295
lint_roller (~> 1.1.0)
@@ -307,7 +307,7 @@ GEM
307307
lint_roller (~> 1.1)
308308
rubocop (>= 1.75.0, < 2.0)
309309
rubocop-ast (>= 1.38.0, < 2.0)
310-
rubocop-rails (2.32.0)
310+
rubocop-rails (2.33.1)
311311
activesupport (>= 4.2.0)
312312
lint_roller (~> 1.1)
313313
rack (>= 1.1)
@@ -342,7 +342,7 @@ GEM
342342
fugit (~> 1.11.0)
343343
railties (>= 7.1)
344344
thor (>= 1.3.1)
345-
sorbet-runtime (0.5.12368)
345+
sorbet-runtime (0.5.12388)
346346
sqlite3 (2.7.3-aarch64-linux-gnu)
347347
sqlite3 (2.7.3-aarch64-linux-musl)
348348
sqlite3 (2.7.3-arm-linux-gnu)
@@ -359,10 +359,10 @@ GEM
359359
ostruct
360360
stringio (3.1.7)
361361
thor (1.4.0)
362-
thruster (0.1.14)
363-
thruster (0.1.14-aarch64-linux)
364-
thruster (0.1.14-arm64-darwin)
365-
thruster (0.1.14-x86_64-linux)
362+
thruster (0.1.15)
363+
thruster (0.1.15-aarch64-linux)
364+
thruster (0.1.15-arm64-darwin)
365+
thruster (0.1.15-x86_64-linux)
366366
timeout (0.4.3)
367367
tzinfo (2.0.6)
368368
concurrent-ruby (~> 1.0)

app/frontend/components/app-header.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang="ts">
22
import { page } from "@inertiajs/svelte"
33
import { inertia } from "@inertiajs/svelte"
4-
import { BookOpen, Folder, LayoutGrid, Menu, Search } from "lucide-svelte"
4+
import { BookOpen, Folder, LayoutGrid, Menu, Search } from "@lucide/svelte"
55
66
import AppLogoIcon from "@/components/app-logo-icon.svelte"
77
import AppLogo from "@/components/app-logo.svelte"

app/frontend/components/app-sidebar.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts">
22
import { Link } from "@inertiajs/svelte"
3-
import { BookOpen, Folder, LayoutGrid } from "lucide-svelte"
3+
import { BookOpen, Folder, LayoutGrid } from "@lucide/svelte"
44
55
import NavFooter from "@/components/nav-footer.svelte"
66
import NavMain from "@/components/nav-main.svelte"

app/frontend/components/appearance-tabs.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts">
2-
import { Monitor, Moon, Sun } from "lucide-svelte"
2+
import { Monitor, Moon, Sun } from "@lucide/svelte"
33
44
import { useAppearanceSvelte } from "@/runes/use-appearance.svelte"
55

app/frontend/components/icon.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts">
2-
import * as icons from "lucide-svelte"
2+
import * as icons from "@lucide/svelte"
33
import type { Component } from "svelte"
44
55
import { cn } from "@/utils"

app/frontend/components/nav-user.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts">
22
import { page } from "@inertiajs/svelte"
3-
import { ChevronsUpDown } from "lucide-svelte"
3+
import { ChevronsUpDown } from "@lucide/svelte"
44
55
import {
66
DropdownMenu,

app/frontend/components/user-menu-content.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts">
22
import { Link, router } from "@inertiajs/svelte"
3-
import { LogOut, Settings } from "lucide-svelte"
3+
import { LogOut, Settings } from "@lucide/svelte"
44
55
import {
66
DropdownMenuGroup,

app/frontend/layouts/app-layout.svelte

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<script lang="ts">
22
import type { Snippet } from "svelte"
33
4-
// import AppLayout from "@/layouts/app/app-sidebar-layout.svelte"
5-
import AppLayout from "@/layouts/app/app-header-layout.svelte"
4+
import AppLayout from "@/layouts/app/app-sidebar-layout.svelte"
65
import type { BreadcrumbItemType } from "@/types"
76
87
interface Props {

0 commit comments

Comments
 (0)