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
22 changes: 11 additions & 11 deletions .github/workflows/cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: build-${{ matrix.os }}-${{ matrix.profile }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
name: build-${{ matrix.os }}-bench
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
name: check-${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand All @@ -103,7 +103,7 @@ jobs:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand All @@ -121,7 +121,7 @@ jobs:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- uses: Swatinem/rust-cache@v1
with:
key: clippy
Expand All @@ -133,7 +133,7 @@ jobs:
name: audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- name: cargo audit
run: |
cargo install cargo-audit
Expand All @@ -143,7 +143,7 @@ jobs:
name: smoketest-pingserver
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
with:
path: pelikan
- name: Build Cache for Pelikan
Expand All @@ -168,7 +168,7 @@ jobs:
name: smoketest-pingserver-tls
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
with:
path: pelikan
- name: Build Cache for Pelikan
Expand All @@ -193,7 +193,7 @@ jobs:
name: smoketest-pingproxy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
with:
path: pelikan
- name: Build Cache for Pelikan
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
name: smoketest-pingproxy-tls-terminating
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
with:
path: pelikan
- name: Build Cache for Pelikan
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
name: smoketest-exposition
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
with:
path: pelikan
- name: Build Cache for Pelikan
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: fuzz-${{ matrix.os }}-${{ matrix.target }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
Expand Down