Skip to content

Commit 8da5654

Browse files
committed
Update Dart and packages versions.
1 parent 19c0534 commit 8da5654

File tree

5 files changed

+79
-95
lines changed

5 files changed

+79
-95
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM dart:2.19 as builder
1+
FROM dart:3.0.7 as builder
22

33
ADD . /src
44
WORKDIR /src
@@ -8,7 +8,7 @@ RUN dart pub get
88
# AOT Compilation allows to reduce overhead, rather than using dart run on each startup
99
RUN dart compile aot-snapshot -o /tmp/codercord.aot bin/codercord.dart
1010

11-
FROM alpine:3.17 as runner
11+
FROM alpine:3.18 as runner
1212

1313
RUN adduser --disabled-password -u 1337 codercord codercord
1414

lib/discord/interactions/commands/walkthrough.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import "package:codercord/discord/components/category_multi_select.dart";
2-
import "package:codercord/discord/interactions/commands/close.dart";
32
import "package:codercord/discord/utils.dart";
43
import "package:codercord/values.dart";
54

lib/discord/interactions/multiselects/multiselects.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ Future<void> handleEvent(IMultiselectInteractionEvent p0) async {
108108
await p0.interaction.message!.pinMessage();
109109
}
110110

111+
// ignore: dead_code
111112
if (archiveThread) {
112113
await handleIssueState(
113114
threadChannel,

0 commit comments

Comments
 (0)