Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- beta

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install ${{ matrix.rust }} toolchain
run: |
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- '--fuzz-dir=keyvalues-serde/fuzz loosely_typed'

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

# Pin to a specific nightly version since we only want it for being able
# to use unstable features, not because we _need_ the newest version.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@master
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-parser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Sanity check test run
run: |
cargo test --all-features --manifest-path keyvalues-parser/Cargo.toml
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Publish parser library
run: |
cargo publish --manifest-path keyvalues-parser/Cargo.toml --token ${{ secrets.CRATES_IO_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/release-serde.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Sanity check test run
run: |
cargo test --all-features --manifest-path keyvalues-serde/Cargo.toml
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Publish serde library
run: |
cargo publish --manifest-path keyvalues-serde/Cargo.toml --token ${{ secrets.CRATES_IO_TOKEN }}
Loading