diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index aa8cbd8..931d31a 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -20,7 +20,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true - uses: actions-rs/toolchain@v1 @@ -82,7 +82,7 @@ jobs: needs: [ build ] steps: - name: Setup Rust - uses: hecrj/setup-rust-action@v1 + uses: hecrj/setup-rust-action@v2 with: rust-version: ${{ matrix.rust }} - name: Install Tarpaulin @@ -92,7 +92,7 @@ jobs: version: 0.14.2 use-tool-cache: true - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: | cargo test --all-features @@ -113,8 +113,8 @@ jobs: needs: [ test ] steps: - name: Set up Rust - uses: hecrj/setup-rust-action@v1 - - uses: actions/checkout@v3 + uses: hecrj/setup-rust-action@v2 + - uses: actions/checkout@v4 - name: Publish shell: bash run: | diff --git a/Cargo.toml b/Cargo.toml index e977053..26e2486 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ time = { version = "0.3.11", features = ["formatting", "local-offset", "parsing" #! Optional Dependencies: ## Use `libgit2` as a backend for git operations -git2 = { version = "0.17.0", default-features = false, optional = true } +git2 = { version = "0.18.0", default-features = false, optional = true } ## Better support for querying the local system time tzdb = { version = "0.5.0", optional = true, default-features = false }