Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v7.0.0
- if: ${{ github.event_name == 'push' }}
uses: docker/login-action@v4.2.0
uses: docker/login-action@v4.4.0
with:
username: stephanmisc
password: ${{ secrets.DOCKER_PASSWORD }}
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
contents: write
steps:
- uses: actions/checkout@v7.0.0
- uses: docker/login-action@v4.2.0
- uses: docker/login-action@v4.4.0
with:
username: stephanmisc
password: ${{ secrets.DOCKER_PASSWORD }}
Expand Down Expand Up @@ -255,11 +255,11 @@ jobs:
chmod a+x artifacts/docuum-x86_64-unknown-linux-musl
chmod a+x artifacts/docuum-aarch64-unknown-linux-musl
- if: ${{ env.VERSION_TO_PUBLISH != null }}
uses: docker/setup-buildx-action@v4.1.0 # For building multi-platform images
uses: docker/setup-buildx-action@v4.2.0 # For building multi-platform images
- if: ${{ env.VERSION_TO_PUBLISH != null }}
uses: docker/setup-qemu-action@v4.1.0 # For building multi-platform images
uses: docker/setup-qemu-action@v4.2.0 # For building multi-platform images
- if: ${{ env.VERSION_TO_PUBLISH != null }}
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7.3.0
with:
context: .
push: true
Expand All @@ -273,7 +273,7 @@ jobs:
set -euxo pipefail

# Run the Docker image to validate it. The image has already been published (since the
# `docker/build-push-action@v7.2.0` action unfortunately doesn't support importing multi-
# `docker/build-push-action@v7.3.0` action unfortunately doesn't support importing multi-
# platform images into a local Docker installation), but we still validate it now anyway.
docker run \
--init \
Expand Down
63 changes: 20 additions & 43 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ clap = { version = "4.6.1", features = ["derive", "wrap_help"] }
colored = "3.1.1"
dirs = "6.0.0"
env_logger = "0.11.11"
humantime = "2.3.0"
humantime = "2.4.0"
log = "0.4.33"
regex = { version = "1.12.4", default-features = false, features = ["std", "unicode-perl"] }
serde = { version = "1.0.228", features = ["derive"] }
Expand Down
8 changes: 4 additions & 4 deletions toast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ command_prefix: |
cargo-offline () { cargo --frozen --offline "$@"; }

# Use this wrapper for formatting code or checking that code is formatted. We use a nightly Rust
# version for the `trailing_comma` formatting option [tag:rust_fmt_nightly_2026-07-01]. The
# version for the `trailing_comma` formatting option [tag:rust_fmt_nightly_2026-07-08]. The
# nightly version was chosen as the latest available release with all components present
# according to this page:
# https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu.html
cargo-fmt () { cargo +nightly-2026-07-01 --frozen --offline fmt --all -- "$@"; }
cargo-fmt () { cargo +nightly-2026-07-08 --frozen --offline fmt --all -- "$@"; }

# Make Bash log commands.
set -x
Expand Down Expand Up @@ -102,8 +102,8 @@ tasks:
# Add Rust tools to `$PATH`.
. "$HOME/.cargo/env"

# Install nightly Rust [ref:rust_fmt_nightly_2026-07-01].
rustup toolchain install nightly-2026-07-01 --profile minimal --component rustfmt
# Install nightly Rust [ref:rust_fmt_nightly_2026-07-08].
rustup toolchain install nightly-2026-07-08 --profile minimal --component rustfmt

install_tools:
description: Install the tools needed to build and validate the program.
Expand Down
Loading