Merge pull request #239 from zhaofengli/renovate/all-minor-patch

Update all non-major dependencies
This commit is contained in:
Zhaofeng Li 2024-11-08 09:08:34 -07:00 committed by GitHub
commit 3d9d22bd7b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 585 additions and 356 deletions

View file

@ -58,7 +58,7 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
- uses: DeterminateSystems/nix-installer-action@v15
continue-on-error: true # Self-hosted runners already have Nix installed
@ -95,7 +95,7 @@ jobs:
run: |
sudo chown root:root /nix
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
- uses: DeterminateSystems/nix-installer-action@v15
continue-on-error: true # Self-hosted runners already have Nix installed

View file

@ -38,7 +38,7 @@ jobs:
run: nix build .#manual -L
- name: Deploy manual
uses: JamesIves/github-pages-deploy-action@4.1.6
uses: JamesIves/github-pages-deploy-action@v4.6.8
with:
branch: gh-pages
folder: result
@ -52,7 +52,7 @@ jobs:
if: ${{ env.api_version == env.latest_stable_api }}
- name: Deploy redirect farm
uses: JamesIves/github-pages-deploy-action@4.1.6
uses: JamesIves/github-pages-deploy-action@v4.6.8
with:
branch: gh-pages
folder: result-redirectFarm

View file

@ -32,7 +32,7 @@ jobs:
run: nix build .#manual -L
- name: Deploy manual
uses: JamesIves/github-pages-deploy-action@v4.3.4
uses: JamesIves/github-pages-deploy-action@v4.6.8
with:
branch: gh-pages
folder: result
@ -47,7 +47,7 @@ jobs:
run: nix build .#manual.redirectFarm -L
- name: Deploy redirect farm
uses: JamesIves/github-pages-deploy-action@4.1.6
uses: JamesIves/github-pages-deploy-action@v4.6.8
with:
branch: gh-pages
folder: result-redirectFarm

911
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -15,12 +15,12 @@ clap_complete = "4.3"
clicolors-control = "1"
console = "0.15.5"
const_format = "0.2.30"
env_logger = "0.10.0"
env_logger = "0.11.0"
futures = "0.3.28"
glob = "0.3.1"
hostname = "0.3.1"
hostname = "0.4.0"
indicatif = "0.17.3"
itertools = "0.11.0"
itertools = "0.13.0"
libc = "0.2.144"
log = "0.4.17"
quit = "2.0.0"
@ -28,12 +28,12 @@ regex = "1"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0"
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"
tempfile = "3.5.0"
tokio-stream = "0.1.14"
uuid = { version = "1.3.2", features = ["serde", "v4"] }
validator = { version = "0.16.0", features = ["derive"] }
validator = { version = "0.19.0", features = ["derive"] }
[dev-dependencies]
ntest = "0.9.0"

View file

@ -87,14 +87,14 @@ pub struct Key {
#[serde(flatten)]
source: KeySource,
#[validate(custom = "validate_dest_dir")]
#[validate(custom(function = "validate_dest_dir"))]
#[serde(rename = "destDir")]
dest_dir: PathBuf,
#[validate(custom = "validate_unix_name")]
#[validate(custom(function = "validate_unix_name"))]
user: String,
#[validate(custom = "validate_unix_name")]
#[validate(custom(function = "validate_unix_name"))]
group: String,
permissions: String,

View file

@ -81,7 +81,7 @@ pub struct NodeConfig {
#[serde(rename = "sshOptions")]
extra_ssh_options: Vec<String>,
#[validate(custom = "validate_keys")]
#[validate(custom(function = "validate_keys"))]
keys: HashMap<String, Key>,
}