Merge pull request #239 from zhaofengli/renovate/all-minor-patch
Update all non-major dependencies
This commit is contained in:
commit
3d9d22bd7b
7 changed files with 585 additions and 356 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -58,7 +58,7 @@ jobs:
|
||||||
outputs:
|
outputs:
|
||||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4.1.7
|
- uses: actions/checkout@v4.2.2
|
||||||
|
|
||||||
- uses: DeterminateSystems/nix-installer-action@v15
|
- uses: DeterminateSystems/nix-installer-action@v15
|
||||||
continue-on-error: true # Self-hosted runners already have Nix installed
|
continue-on-error: true # Self-hosted runners already have Nix installed
|
||||||
|
@ -95,7 +95,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
sudo chown root:root /nix
|
sudo chown root:root /nix
|
||||||
|
|
||||||
- uses: actions/checkout@v4.1.7
|
- uses: actions/checkout@v4.2.2
|
||||||
|
|
||||||
- uses: DeterminateSystems/nix-installer-action@v15
|
- uses: DeterminateSystems/nix-installer-action@v15
|
||||||
continue-on-error: true # Self-hosted runners already have Nix installed
|
continue-on-error: true # Self-hosted runners already have Nix installed
|
||||||
|
|
4
.github/workflows/manual-stable.yml
vendored
4
.github/workflows/manual-stable.yml
vendored
|
@ -38,7 +38,7 @@ jobs:
|
||||||
run: nix build .#manual -L
|
run: nix build .#manual -L
|
||||||
|
|
||||||
- name: Deploy manual
|
- name: Deploy manual
|
||||||
uses: JamesIves/github-pages-deploy-action@4.1.6
|
uses: JamesIves/github-pages-deploy-action@v4.6.8
|
||||||
with:
|
with:
|
||||||
branch: gh-pages
|
branch: gh-pages
|
||||||
folder: result
|
folder: result
|
||||||
|
@ -52,7 +52,7 @@ jobs:
|
||||||
if: ${{ env.api_version == env.latest_stable_api }}
|
if: ${{ env.api_version == env.latest_stable_api }}
|
||||||
|
|
||||||
- name: Deploy redirect farm
|
- name: Deploy redirect farm
|
||||||
uses: JamesIves/github-pages-deploy-action@4.1.6
|
uses: JamesIves/github-pages-deploy-action@v4.6.8
|
||||||
with:
|
with:
|
||||||
branch: gh-pages
|
branch: gh-pages
|
||||||
folder: result-redirectFarm
|
folder: result-redirectFarm
|
||||||
|
|
4
.github/workflows/manual.yml
vendored
4
.github/workflows/manual.yml
vendored
|
@ -32,7 +32,7 @@ jobs:
|
||||||
run: nix build .#manual -L
|
run: nix build .#manual -L
|
||||||
|
|
||||||
- name: Deploy manual
|
- name: Deploy manual
|
||||||
uses: JamesIves/github-pages-deploy-action@v4.3.4
|
uses: JamesIves/github-pages-deploy-action@v4.6.8
|
||||||
with:
|
with:
|
||||||
branch: gh-pages
|
branch: gh-pages
|
||||||
folder: result
|
folder: result
|
||||||
|
@ -47,7 +47,7 @@ jobs:
|
||||||
run: nix build .#manual.redirectFarm -L
|
run: nix build .#manual.redirectFarm -L
|
||||||
|
|
||||||
- name: Deploy redirect farm
|
- name: Deploy redirect farm
|
||||||
uses: JamesIves/github-pages-deploy-action@4.1.6
|
uses: JamesIves/github-pages-deploy-action@v4.6.8
|
||||||
with:
|
with:
|
||||||
branch: gh-pages
|
branch: gh-pages
|
||||||
folder: result-redirectFarm
|
folder: result-redirectFarm
|
||||||
|
|
911
Cargo.lock
generated
911
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
10
Cargo.toml
10
Cargo.toml
|
@ -15,12 +15,12 @@ clap_complete = "4.3"
|
||||||
clicolors-control = "1"
|
clicolors-control = "1"
|
||||||
console = "0.15.5"
|
console = "0.15.5"
|
||||||
const_format = "0.2.30"
|
const_format = "0.2.30"
|
||||||
env_logger = "0.10.0"
|
env_logger = "0.11.0"
|
||||||
futures = "0.3.28"
|
futures = "0.3.28"
|
||||||
glob = "0.3.1"
|
glob = "0.3.1"
|
||||||
hostname = "0.3.1"
|
hostname = "0.4.0"
|
||||||
indicatif = "0.17.3"
|
indicatif = "0.17.3"
|
||||||
itertools = "0.11.0"
|
itertools = "0.13.0"
|
||||||
libc = "0.2.144"
|
libc = "0.2.144"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
quit = "2.0.0"
|
quit = "2.0.0"
|
||||||
|
@ -28,12 +28,12 @@ regex = "1"
|
||||||
serde = { version = "1.0.163", features = ["derive"] }
|
serde = { version = "1.0.163", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
shell-escape = "0.1.5"
|
shell-escape = "0.1.5"
|
||||||
snafu = { version = "0.7.4", features = ["backtrace", "backtraces-impl-backtrace-crate"] }
|
snafu = { version = "0.8.0", features = ["backtrace", "backtraces-impl-backtrace-crate"] }
|
||||||
sys-info = "0.9.1"
|
sys-info = "0.9.1"
|
||||||
tempfile = "3.5.0"
|
tempfile = "3.5.0"
|
||||||
tokio-stream = "0.1.14"
|
tokio-stream = "0.1.14"
|
||||||
uuid = { version = "1.3.2", features = ["serde", "v4"] }
|
uuid = { version = "1.3.2", features = ["serde", "v4"] }
|
||||||
validator = { version = "0.16.0", features = ["derive"] }
|
validator = { version = "0.19.0", features = ["derive"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ntest = "0.9.0"
|
ntest = "0.9.0"
|
||||||
|
|
|
@ -87,14 +87,14 @@ pub struct Key {
|
||||||
#[serde(flatten)]
|
#[serde(flatten)]
|
||||||
source: KeySource,
|
source: KeySource,
|
||||||
|
|
||||||
#[validate(custom = "validate_dest_dir")]
|
#[validate(custom(function = "validate_dest_dir"))]
|
||||||
#[serde(rename = "destDir")]
|
#[serde(rename = "destDir")]
|
||||||
dest_dir: PathBuf,
|
dest_dir: PathBuf,
|
||||||
|
|
||||||
#[validate(custom = "validate_unix_name")]
|
#[validate(custom(function = "validate_unix_name"))]
|
||||||
user: String,
|
user: String,
|
||||||
|
|
||||||
#[validate(custom = "validate_unix_name")]
|
#[validate(custom(function = "validate_unix_name"))]
|
||||||
group: String,
|
group: String,
|
||||||
|
|
||||||
permissions: String,
|
permissions: String,
|
||||||
|
|
|
@ -81,7 +81,7 @@ pub struct NodeConfig {
|
||||||
#[serde(rename = "sshOptions")]
|
#[serde(rename = "sshOptions")]
|
||||||
extra_ssh_options: Vec<String>,
|
extra_ssh_options: Vec<String>,
|
||||||
|
|
||||||
#[validate(custom = "validate_keys")]
|
#[validate(custom(function = "validate_keys"))]
|
||||||
keys: HashMap<String, Key>,
|
keys: HashMap<String, Key>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue