Skip to content

Commit af88611

Browse files
authored
Upgrade dependencies and base images (#86)
Signed-off-by: Sergio Castaño Arteaga <[email protected]>
1 parent 0a7c2ff commit af88611

File tree

6 files changed

+136
-144
lines changed

6 files changed

+136
-144
lines changed

.github/dependabot.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "cargo"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
groups:
8+
cli:
9+
patterns:
10+
- "*"
11+
update-types:
12+
- "minor"
13+
- "patch"
14+
15+
- package-ecosystem: "npm"
16+
directory: "/web"
17+
schedule:
18+
interval: "monthly"
19+
groups:
20+
web-application:
21+
patterns:
22+
- "*"
23+
update-types:
24+
- "minor"
25+
- "patch"
26+
27+
- package-ecosystem: "github-actions"
28+
directory: "/"
29+
schedule:
30+
interval: "monthly"
31+
groups:
32+
github-actions:
33+
patterns:
34+
- "*"
35+
36+
- package-ecosystem: "docker"
37+
directory: "/"
38+
schedule:
39+
interval: "monthly"
40+
groups:
41+
docker:
42+
patterns:
43+
- "*"
44+

.github/workflows/build-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
packages: write
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
- name: Login to GitHub Container Registry
2020
uses: docker/login-action@v3
2121
with:

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
labels: ubuntu-latest-16-cores
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
- name: Setup Rust
1717
uses: dtolnay/rust-toolchain@master
1818
with:
@@ -32,7 +32,7 @@ jobs:
3232
NODE_OPTIONS: --max_old_space_size=4096
3333
steps:
3434
- name: Checkout code
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
- name: Cache node modules
3737
uses: actions/cache@v3
3838
with:

0 commit comments

Comments
 (0)