Skip to content

Commit

Permalink
version: add dependabot file change
Browse files Browse the repository at this point in the history
  • Loading branch information
darakeon committed Dec 1, 2023
1 parent d52b356 commit e242f8e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2
updates:
- package-ecosystem: "nuget"
directory: "/core/"
target-branch: "10.2.0.0"
target-branch: "10.2.1.0"
schedule:
interval: "weekly"
labels:
Expand All @@ -17,7 +17,7 @@ updates:

- package-ecosystem: "nuget"
directory: "/site/"
target-branch: "10.2.0.0"
target-branch: "10.2.1.0"
schedule:
interval: "weekly"
labels:
Expand All @@ -27,7 +27,7 @@ updates:

- package-ecosystem: "nuget"
directory: "/robot/"
target-branch: "10.2.0.0"
target-branch: "10.2.1.0"
schedule:
interval: "weekly"
labels:
Expand All @@ -37,7 +37,7 @@ updates:

- package-ecosystem: "npm"
directory: "/site/Tests/Browser/"
target-branch: "10.2.0.0"
target-branch: "10.2.1.0"
schedule:
interval: "weekly"
labels:
Expand All @@ -47,7 +47,7 @@ updates:

- package-ecosystem: "gradle"
directory: "/android/"
target-branch: "10.2.0.0"
target-branch: "10.2.1.0"
schedule:
interval: "weekly"
labels:
Expand All @@ -57,7 +57,7 @@ updates:

- package-ecosystem: "docker"
directory: "/ci/"
target-branch: "10.2.0.0"
target-branch: "10.2.1.0"
schedule:
interval: "weekly"
labels:
Expand All @@ -67,7 +67,7 @@ updates:

- package-ecosystem: "docker"
directory: "/publish/"
target-branch: "10.2.0.0"
target-branch: "10.2.1.0"
schedule:
interval: "weekly"
labels:
Expand All @@ -77,7 +77,7 @@ updates:

- package-ecosystem: "cargo"
directory: "/version/"
target-branch: "10.2.0.0"
target-branch: "10.2.1.0"
schedule:
interval: "weekly"
labels:
Expand All @@ -87,7 +87,7 @@ updates:

- package-ecosystem: "pip"
directory: "/midna/"
target-branch: "10.2.0.0"
target-branch: "10.2.1.0"
schedule:
interval: "weekly"
labels:
Expand Down
2 changes: 1 addition & 1 deletion docs/RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This is the list of project releases, past and current. To see tasks that are st
- :ant:: the developer is improving stuff or fixing some sh\*t it did (increases last number)

## <a name="10.2.1.0"></a>10.2.1.0 :sheep: <sup>`5`</sup>
- [ ] Update dependabot file in version update
- [x] `231201>231201` Update dependabot file in version update
- [x] `231201>231201` Add tests to moves ordering at reports
- [x] `231127>231127` Make google see move unsubscribe link ([Google tips avoid being spam])
- [x] `231126>231126` Update to .NET 8
Expand Down
2 changes: 1 addition & 1 deletion version/src/dependabot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use crate::version::Version;

fn path() -> String { get_path(vec!["..", ".github", "dependabot.yml"]) }

pub fn update_node(version: &Version) {
pub fn update_dependabot(version: &Version) {
let old_version = config_version(&version.prev);
let new_version = config_version(&version.code);

Expand Down
3 changes: 3 additions & 0 deletions version/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ mod android;
mod arguments;
mod browser;
mod csharp;
mod dependabot;
mod end;
mod file;
mod git;
Expand All @@ -17,6 +18,7 @@ use android::update_android;
use arguments::{parse_arguments,ProgramOption};
use browser::update_node;
use csharp::update_csharp;
use dependabot::update_dependabot;
use end::success;
use git::{update_local,go_to_main,commit,connect_local_and_remote_branch,create_tag,create_branch,remove_branch,update_remote,stash,stash_pop};
use notes::update_notes;
Expand Down Expand Up @@ -92,6 +94,7 @@ fn update_version(version: Version) {
update_task_list(&version);
update_android(&version);
update_csharp(&version);
update_dependabot(&version);
update_rust(&version);
update_node(&version);

Expand Down

0 comments on commit e242f8e

Please sign in to comment.