diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index e070359..5083cf2 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -33,7 +33,7 @@ jobs: tar -czvf ${{ matrix.bins }}-${{ matrix.targets }}.tar.gz \ -C target/${{ matrix.targets }}/dist/ ${{ matrix.bins }} - - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 + - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: ${{ matrix.bins }}-${{ matrix.targets }}.tar.gz path: ${{ matrix.bins }}-${{ matrix.targets }}.tar.gz diff --git a/.github/workflows/cache/action.yml b/.github/workflows/cache/action.yml index 57af4ad..fefa0aa 100644 --- a/.github/workflows/cache/action.yml +++ b/.github/workflows/cache/action.yml @@ -7,7 +7,7 @@ runs: # over time). - name: Add cache for cargo id: cache - uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 with: path: | # Taken from . diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 80344d2..f3370ae 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -36,7 +36,7 @@ jobs: - run: cargo llvm-cov --workspace --codecov --output-path codecov.json --release - name: Upload coverage to Codecov - uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v5.1.2 + uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1 with: token: ${{ secrets.CODECOV_TOKEN }} files: codecov.json diff --git a/Cargo.toml b/Cargo.toml index 3271b0f..a0b0f0c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,8 +13,8 @@ ansi-to-tui = "7.0.0" anyhow = "1.0.98" chrono = "0.4.38" clap = { version = "4.5.21", features = ["derive"] } -crossterm = "0.28.1" -deku = { version = "0.18.1", default-features = false, features = ["alloc", "std"] } +crossterm = "0.29.0" +deku = { version = "0.20.0", default-features = false, features = ["alloc", "std"] } env_logger = "0.11.5" evalexpr = "12.0.2" hex = "0.4.3" @@ -22,7 +22,7 @@ log = "0.4.22" once_cell = "1.20.2" ratatui = "0.29.0" regex = "1.11.1" -tui-input = "0.11.0" +tui-input = "0.14.0" [dev-dependencies] insta = "1.41.1"