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 @@ -12,7 +12,7 @@ jobs:
name: Build for Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.0
- uses: actions/checkout@v7.0.1
- if: ${{ github.event_name == 'push' }}
uses: docker/login-action@v4.4.0
with:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
# The unit tests do not expect the files in `test_data` to have carriage returns added.
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v7.0.0
- uses: actions/checkout@v7.0.1
- run: |
# Make Bash log commands and not silently ignore errors.
set -euxo pipefail
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
name: Build for macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v7.0.0
- uses: actions/checkout@v7.0.1
- run: |
# Make Bash log commands and not silently ignore errors.
set -euxo pipefail
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
name: Install on macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v7.0.0
- uses: actions/checkout@v7.0.1
- run: |
# Make Bash log commands and not silently ignore errors.
set -euxo pipefail
Expand All @@ -178,7 +178,7 @@ jobs:
name: Install on Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.0
- uses: actions/checkout@v7.0.1
- run: |
# Make Bash log commands and not silently ignore errors.
set -euxo pipefail
Expand All @@ -196,7 +196,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v7.0.0
- uses: actions/checkout@v7.0.1
- uses: docker/login-action@v4.4.0
with:
username: stephanmisc
Expand Down
20 changes: 10 additions & 10 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 @@ -17,7 +17,7 @@ clippy.pedantic = { level = "deny", priority = -1 }
rust.warnings = "deny"

[dependencies]
clap = { version = "4.6.2", features = ["derive", "wrap_help"] }
clap = { version = "4.6.3", features = ["derive", "wrap_help"] }
clap_complete = "4.6.7"
colored = "3.1.1"
pad = "0.1.6"
Expand Down