Skip to content

Commit 2bebedd

Browse files
committed
update ci, deps, and ignore false warning
1 parent 72abfa6 commit 2bebedd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
test:
66
working_directory: /tmp/project
77
docker:
8-
- image: cimg/rust:1.84
8+
- image: cimg/rust:1.85
99
resource_class: small
1010
steps:
1111
- checkout

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "1.2.0"
44
edition = "2021"
55

66
[dependencies]
7-
octocrab = "0.43"
7+
octocrab = "0.44"
88
concourse-resource = "0.3"
99
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] }
1010
serde = "1.0"

src/github_issue.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ pub(crate) enum Action {
1414
}
1515

1616
impl From<Action> for String {
17+
#[allow(unreachable_patterns)]
1718
fn from(action: Action) -> Self {
1819
match action {
1920
Action::Create => String::from("Create"),

0 commit comments

Comments
 (0)