Skip to content

Commit

Permalink
Merge branch 'main' into wip-docs-for-home-dir
Browse files Browse the repository at this point in the history
  • Loading branch information
lquerel authored Sep 9, 2024
2 parents 1a8bf9b + cdea78f commit 5f5194d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 16 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Extract metadata (tags, labels) for Docker
Expand Down Expand Up @@ -48,6 +50,7 @@ jobs:
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
with:
push: true
platforms: linux/amd64,linux/arm64
provenance: mode=max
sbom: true
tags: ${{ steps.meta.outputs.tags }}
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ publish = false
rust-version = "1.76"

[workspace.dependencies]
serde = { version = "1.0.209", features = ["derive"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_yaml = "0.9.32"
serde_json = { version = "1.0.127"}
serde_json = { version = "1.0.128"}
thiserror = "1.0.63"
url = "2.5.2"
ureq = "2.10.0"
regex = "1.10.6"
rayon = "1.10.0"
ordered-float = { version = "4.2.0", features = ["serde", "schemars"] }
walkdir = "2.5.0"
anyhow = "1.0.83"
anyhow = "1.0.87"
itertools = "0.13.0"
globset = { version = "0.4.14", features = ["serde1"] }
miette = { version = "7.2.0", features = ["fancy", "serde"] }
Expand Down Expand Up @@ -78,7 +78,7 @@ weaver_cache = { path = "crates/weaver_cache" }
weaver_forge = { path = "crates/weaver_forge" }
weaver_checker = { path = "crates/weaver_checker" }

clap = { version = "4.5.16", features = ["derive"] }
clap = { version = "4.5.17", features = ["derive"] }
rayon = "1.10.0"
ratatui = { version = "0.28.1", features=["serde"] }
crossterm = { version = "0.28.1", features = ["serde"] }
Expand Down

0 comments on commit 5f5194d

Please sign in to comment.