Skip to content

Commit 8cb1c8c

Browse files
authored
Upgrade dependencies and base images (#695)
Signed-off-by: Sergio Castaño Arteaga <tegioz@icloud.com>
1 parent 21d35ec commit 8cb1c8c

8 files changed

Lines changed: 288 additions & 309 deletions

File tree

.github/dependabot.yml

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,34 @@
11
version: 2
2-
updates:
3-
- package-ecosystem: "cargo"
4-
directory: "/"
2+
3+
multi-ecosystem-groups:
4+
backend:
55
schedule:
66
interval: "monthly"
7-
groups:
8-
backend:
9-
patterns:
10-
- "*"
11-
update-types:
12-
- "minor"
13-
- "patch"
14-
15-
- package-ecosystem: "github-actions"
16-
directory: "/"
7+
infra:
178
schedule:
189
interval: "monthly"
19-
groups:
20-
github-actions:
21-
patterns:
22-
- "*"
10+
11+
updates:
12+
- package-ecosystem: "cargo"
13+
directory: "/"
14+
patterns:
15+
- "*"
16+
multi-ecosystem-group: "backend"
2317

2418
- package-ecosystem: "docker"
2519
directory: "/"
26-
schedule:
27-
interval: "monthly"
20+
patterns:
21+
- "*"
22+
multi-ecosystem-group: "infra"
2823

2924
- package-ecosystem: "docker"
3025
directory: "/database/migrations"
31-
schedule:
32-
interval: "monthly"
26+
patterns:
27+
- "*"
28+
multi-ecosystem-group: "infra"
3329

30+
- package-ecosystem: "github-actions"
31+
directory: "/"
32+
patterns:
33+
- "*"
34+
multi-ecosystem-group: "infra"

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Rust
1616
uses: dtolnay/rust-toolchain@master
1717
with:
18-
toolchain: 1.92.0
18+
toolchain: 1.93.0
1919
components: clippy, rustfmt
2020
- name: Run clippy
2121
run: cargo clippy --all-targets --all-features -- --deny warnings
@@ -30,6 +30,6 @@ jobs:
3030
- name: Setup Rust
3131
uses: dtolnay/rust-toolchain@master
3232
with:
33-
toolchain: 1.92.0
33+
toolchain: 1.93.0
3434
- name: Run backend tests
3535
run: cargo test

0 commit comments

Comments
 (0)