Skip to content

Commit

Permalink
fix: CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dnbln committed Feb 6, 2024
1 parent 89af973 commit fdd0d6e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build Writerside docs using Docker
uses: JetBrains/writerside-github-action@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/rerun-dirty-tests-index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install latest nightly
uses: actions-rs/toolchain@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install latest nightly
uses: actions-rs/toolchain@v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ pub fn div(a: i32, b: i32) -> Option<i32> {
Some(div_unchecked(a, b))
} else {
None
// a
}
}

0 comments on commit fdd0d6e

Please sign in to comment.