Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/cargo_clippy_lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: |

rustup toolchain install nightly
Expand All @@ -22,7 +22,7 @@ jobs:
# test-clang:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/checkout@v6
# - name: setup rust
# uses: dtolnay/rust-toolchain@stable
# - name: test
Expand All @@ -32,7 +32,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: setup rust
uses: dtolnay/rust-toolchain@stable
- name: test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cargo_fmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
cargo_fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up rust
uses: actions-rs/toolchain@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chanelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Test the git-cliff changelog generator action
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Generate a changelog
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
fail-fast: false
container: mendelrubin/cargo-msrv:latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: remove Cargo.toml so cargo-msrv doesn't find it
run: |
rm Cargo.toml
ls -l
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Get MSRV and create badge

id: get-msrv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
crate: [git_function_history, git-function-history-gui, cargo-function-history, function_history_backend_thread, git_function_history-proc-macro, function-grep]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: setup rust
uses: dtolnay/rust-toolchain@stable
- run: |
Expand Down
Loading