Skip to content

Commit

Permalink
Use GitHub Actions checkout v4 on
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomasdezeeuw committed Apr 14, 2024
1 parent e1371cf commit 2a8d7d4
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
Expand All @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
Expand All @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- name: Check docs
run: RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --workspace --all-features
6 changes: 3 additions & 3 deletions .github/workflows/heph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
timeout-minutes: 10
if: false # FIXME.
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/test
with:
working-directory: ./
Expand All @@ -36,7 +36,7 @@ jobs:
timeout-minutes: 10
if: false # FIXME.
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_miri
with:
working-directory: ./
Expand All @@ -49,7 +49,7 @@ jobs:
matrix:
sanitiser: [address, leak, memory, thread]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/http.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
timeout-minutes: 10
if: false # FIXME.
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/test
with:
working-directory: http
Expand All @@ -34,7 +34,7 @@ jobs:
matrix:
sanitiser: [address, leak, memory, thread]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/inbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
matrix:
release: ['', '--release'] # '' => debug.
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/test
with:
test-flags: ${{ matrix.release }}
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_miri
with:
working-directory: inbox
Expand All @@ -47,7 +47,7 @@ jobs:
matrix:
sanitiser: [address, leak, memory, thread]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/remote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
timeout-minutes: 10
if: false # FIXME.
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/test
with:
working-directory: remote
Expand All @@ -34,7 +34,7 @@ jobs:
matrix:
sanitiser: [address, leak, memory, thread]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
timeout-minutes: 10
if: false # FIXME.
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/test
with:
working-directory: rt
Expand All @@ -34,7 +34,7 @@ jobs:
matrix:
sanitiser: [address, leak, memory, thread]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
Expand Down

0 comments on commit 2a8d7d4

Please sign in to comment.