Update all non-major dependencies
This commit is contained in:
parent
03f1a18a6f
commit
40429b7ed4
5 changed files with 581 additions and 352 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -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
|
||||
|
|
4
.github/workflows/manual-stable.yml
vendored
4
.github/workflows/manual-stable.yml
vendored
|
@ -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
|
||||
|
|
4
.github/workflows/manual.yml
vendored
4
.github/workflows/manual.yml
vendored
|
@ -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
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"
|
||||
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"
|
||||
|
|
Loading…
Reference in a new issue