File tree Expand file tree Collapse file tree 2 files changed +33
-4
lines changed
Expand file tree Collapse file tree 2 files changed +33
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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') }}
You can’t perform that action at this time.
0 commit comments