From 6e1220700dccc3aea68041b8fb39428763079c61 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Mon, 19 Sep 2022 20:55:28 +0200 Subject: [PATCH] github-ci: bump cbindgen to 0.24.3 This addresses issues around the AppLayerTxData type. --- .github/workflows/builds.yml | 6 +++--- .github/workflows/commits.yml | 2 +- .github/workflows/formatting.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 87d520be6962..ef227466a98f 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -1461,7 +1461,7 @@ jobs: rust \ xz - name: Install cbindgen - run: cargo install --force --debug --version 0.14.1 cbindgen + run: cargo install --force --debug --version 0.24.3 cbindgen - run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH - run: pip3 install PyYAML - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b @@ -1501,7 +1501,7 @@ jobs: # hack: install our own cbindgen system wide as we can't get the # preinstalled one to be picked up by configure - name: cbindgen - run: cargo install --root /usr --force --debug --version 0.14.1 cbindgen + run: cargo install --root /usr --force --debug --version 0.24.3 cbindgen - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 with: @@ -1552,7 +1552,7 @@ jobs: # hack: install our own cbindgen system wide as we can't get the # preinstalled one to be picked up by configure - name: cbindgen - run: cargo install --root /usr --force --debug --version 0.14.1 cbindgen + run: cargo install --root /usr --force --debug --version 0.24.3 cbindgen - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 with: diff --git a/.github/workflows/commits.yml b/.github/workflows/commits.yml index 01f8dc54c78e..6696be29cd8c 100644 --- a/.github/workflows/commits.yml +++ b/.github/workflows/commits.yml @@ -69,7 +69,7 @@ jobs: - name: Install cbindgen run: | cd $HOME/.cargo/bin - curl -OL https://github.com/eqrion/cbindgen/releases/download/v0.15.0/cbindgen + curl -OL https://github.com/eqrion/cbindgen/releases/download/v0.24.3/cbindgen chmod 755 cbindgen - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b with: diff --git a/.github/workflows/formatting.yml b/.github/workflows/formatting.yml index bbc53cafb873..7fc9b650313f 100644 --- a/.github/workflows/formatting.yml +++ b/.github/workflows/formatting.yml @@ -67,7 +67,7 @@ jobs: # no need to install full clang apt-get install -y clang-format-9 - name: Install cbindgen - run: cargo install --force --debug --version 0.14.1 cbindgen + run: cargo install --force --debug --version 0.24.3 cbindgen - run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH # Checking out the branch is not as simple as "checking out". #