Skip to content

Commit b21bc70

Browse files
authored
Merge pull request #306 from semiotic-ai/suchapalaver/fix-tap-aggregator-version
fix: update tap aggregator version
2 parents 3047d45 + 08eb555 commit b21bc70

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/release_please.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,17 @@ jobs:
4545
- uses: actions/checkout@v3
4646
- name: Install system dependencies
4747
run: apt-get update && apt-get install -y protobuf-compiler libsasl2-dev
48-
- name: Clean target directory
49-
run: rm -rf target
5048
- uses: actions/cache@v3
5149
with:
5250
path: |
5351
~/.cargo/registry
5452
~/.cargo/git
53+
target
5554
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
5655
- name: Install cargo-workspaces
5756
run: cargo install cargo-workspaces
5857
- name: Publish workspace crates
5958
# `--no-remove-dev-deps` is a workaround for https://github.com/pksunkara/cargo-workspaces/issues/103
60-
run: |
61-
cargo workspaces publish --from-git --no-remove-dev-deps -y
59+
run: cargo workspaces publish --from-git --no-remove-dev-deps -y
6260
env:
6361
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ serde = { version = "1.0.219", features = ["derive"] }
4545
serde_json = { version = "1.0.140", features = ["raw_value"] }
4646
strum = { version = "0.27.1", features = ["derive"] }
4747
rstest = "0.25.0"
48-
tap_aggregator = { version = "0.5.3", path = "tap_aggregator" }
48+
tap_aggregator = { version = "0.5.4", path = "tap_aggregator" }
4949
tap_eip712_message = { version = "0.2.1", path = "tap_eip712_message" }
5050
tap_core = { version = "4.1.2", path = "tap_core" }
5151
tap_graph = { version = "0.3.2", path = "tap_graph", features = ["v2"] }

0 commit comments

Comments
 (0)