Skip to content

Commit e02bac8

Browse files
authored
chore: update GH actions (#32)
* update GH actions * enable monthly dependabot updates
1 parent 3c576d9 commit e02bac8

File tree

2 files changed

+33
-4
lines changed

2 files changed

+33
-4
lines changed

.github/dependabot.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: github-actions
9+
directory: "/"
10+
schedule:
11+
interval: monthly
12+
time: "09:00"
13+
timezone: Europe/Berlin
14+
groups:
15+
github-actions:
16+
patterns:
17+
- "*"
18+
open-pull-requests-limit: 99
19+
- package-ecosystem: cargo
20+
directory: "/"
21+
schedule:
22+
interval: monthly
23+
time: "09:00"
24+
timezone: Europe/Berlin
25+
groups:
26+
cargo:
27+
patterns:
28+
- "*"
29+
open-pull-requests-limit: 99

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Sources
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Cache Dependencies & Build Outputs
17-
uses: actions/cache@v2
17+
uses: actions/cache@v4
1818
with:
1919
path: ~/.cargo
2020
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
@@ -45,10 +45,10 @@ jobs:
4545

4646
steps:
4747
- name: Checkout Sources
48-
uses: actions/checkout@v2
48+
uses: actions/checkout@v4
4949

5050
- name: Cache Dependencies & Build Outputs
51-
uses: actions/cache@v2
51+
uses: actions/cache@v4
5252
with:
5353
path: ~/.cargo
5454
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)