Skip to content

Commit bea9a8e

Browse files
authored
Update dependencies and GitHub Actions (#384)
1 parent a551455 commit bea9a8e

4 files changed

Lines changed: 31 additions & 54 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v7.0.0
1616
- if: ${{ github.event_name == 'push' }}
17-
uses: docker/login-action@v4.2.0
17+
uses: docker/login-action@v4.4.0
1818
with:
1919
username: stephanmisc
2020
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -197,7 +197,7 @@ jobs:
197197
contents: write
198198
steps:
199199
- uses: actions/checkout@v7.0.0
200-
- uses: docker/login-action@v4.2.0
200+
- uses: docker/login-action@v4.4.0
201201
with:
202202
username: stephanmisc
203203
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -255,11 +255,11 @@ jobs:
255255
chmod a+x artifacts/docuum-x86_64-unknown-linux-musl
256256
chmod a+x artifacts/docuum-aarch64-unknown-linux-musl
257257
- if: ${{ env.VERSION_TO_PUBLISH != null }}
258-
uses: docker/setup-buildx-action@v4.1.0 # For building multi-platform images
258+
uses: docker/setup-buildx-action@v4.2.0 # For building multi-platform images
259259
- if: ${{ env.VERSION_TO_PUBLISH != null }}
260-
uses: docker/setup-qemu-action@v4.1.0 # For building multi-platform images
260+
uses: docker/setup-qemu-action@v4.2.0 # For building multi-platform images
261261
- if: ${{ env.VERSION_TO_PUBLISH != null }}
262-
uses: docker/build-push-action@v7.2.0
262+
uses: docker/build-push-action@v7.3.0
263263
with:
264264
context: .
265265
push: true
@@ -273,7 +273,7 @@ jobs:
273273
set -euxo pipefail
274274
275275
# Run the Docker image to validate it. The image has already been published (since the
276-
# `docker/build-push-action@v7.2.0` action unfortunately doesn't support importing multi-
276+
# `docker/build-push-action@v7.3.0` action unfortunately doesn't support importing multi-
277277
# platform images into a local Docker installation), but we still validate it now anyway.
278278
docker run \
279279
--init \

Cargo.lock

Lines changed: 20 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ clap = { version = "4.6.1", features = ["derive", "wrap_help"] }
2323
colored = "3.1.1"
2424
dirs = "6.0.0"
2525
env_logger = "0.11.11"
26-
humantime = "2.3.0"
26+
humantime = "2.4.0"
2727
log = "0.4.33"
2828
regex = { version = "1.12.4", default-features = false, features = ["std", "unicode-perl"] }
2929
serde = { version = "1.0.228", features = ["derive"] }

toast.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ command_prefix: |
1717
cargo-offline () { cargo --frozen --offline "$@"; }
1818
1919
# Use this wrapper for formatting code or checking that code is formatted. We use a nightly Rust
20-
# version for the `trailing_comma` formatting option [tag:rust_fmt_nightly_2026-07-01]. The
20+
# version for the `trailing_comma` formatting option [tag:rust_fmt_nightly_2026-07-08]. The
2121
# nightly version was chosen as the latest available release with all components present
2222
# according to this page:
2323
# https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu.html
24-
cargo-fmt () { cargo +nightly-2026-07-01 --frozen --offline fmt --all -- "$@"; }
24+
cargo-fmt () { cargo +nightly-2026-07-08 --frozen --offline fmt --all -- "$@"; }
2525
2626
# Make Bash log commands.
2727
set -x
@@ -102,8 +102,8 @@ tasks:
102102
# Add Rust tools to `$PATH`.
103103
. "$HOME/.cargo/env"
104104
105-
# Install nightly Rust [ref:rust_fmt_nightly_2026-07-01].
106-
rustup toolchain install nightly-2026-07-01 --profile minimal --component rustfmt
105+
# Install nightly Rust [ref:rust_fmt_nightly_2026-07-08].
106+
rustup toolchain install nightly-2026-07-08 --profile minimal --component rustfmt
107107
108108
install_tools:
109109
description: Install the tools needed to build and validate the program.

0 commit comments

Comments
 (0)