Skip to content

Commit 3ce4016

Browse files
chore(deps): Bump github.com/CosmWasm/wasmvm/v2 from 2.1.4 to 2.1.5 (#3519)
* chore(deps): Bump github.com/CosmWasm/wasmvm/v2 from 2.1.4 to 2.1.5 Bumps [github.com/CosmWasm/wasmvm/v2](https://github.com/CosmWasm/wasmvm) from 2.1.4 to 2.1.5. - [Release notes](https://github.com/CosmWasm/wasmvm/releases) - [Changelog](https://github.com/CosmWasm/wasmvm/blob/main/CHANGELOG.md) - [Commits](CosmWasm/wasmvm@v2.1.4...v2.1.5) --- updated-dependencies: - dependency-name: github.com/CosmWasm/wasmvm/v2 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * Fix libwasmvm verison in tests/dockerfile * Fix checksums --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Eric Warehime <[email protected]>
1 parent 5b7c34e commit 3ce4016

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ jobs:
170170
if: env.GIT_DIFF
171171
- name: Install New Gaiad
172172
run: |
173-
curl -LO https://github.com/CosmWasm/wasmvm/releases/download/v2.1.4/libwasmvm.x86_64.so
174-
curl -LO https://github.com/CosmWasm/wasmvm/releases/download/v2.1.4/libwasmvm.aarch64.so
173+
curl -LO https://github.com/CosmWasm/wasmvm/releases/download/v2.1.5/libwasmvm.x86_64.so
174+
curl -LO https://github.com/CosmWasm/wasmvm/releases/download/v2.1.5/libwasmvm.aarch64.so
175175
uname -m
176176
sudo cp "./libwasmvm.$(uname -m).so" /usr/lib/
177177
make build

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ ENV PACKAGES="curl make git libc-dev bash file gcc linux-headers eudev-dev"
88
RUN apk add --no-cache $PACKAGES
99

1010
# See https://github.com/CosmWasm/wasmvm/releases
11-
ARG WASMVM_VERSION=v2.1.4
11+
ARG WASMVM_VERSION=v2.1.5
1212
ADD https://github.com/CosmWasm/wasmvm/releases/download/${WASMVM_VERSION}/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.aarch64.a
1313
ADD https://github.com/CosmWasm/wasmvm/releases/download/${WASMVM_VERSION}/libwasmvm_muslc.x86_64.a /lib/libwasmvm_muslc.x86_64.a
14-
RUN sha256sum /lib/libwasmvm_muslc.aarch64.a | grep 090b97641157fae1ae45e7ed368a1a8c091f3fef67958d3bc7c2fa7e7c54b6b4
15-
RUN sha256sum /lib/libwasmvm_muslc.x86_64.a | grep a4a3d09b36fabb65b119d5ba23442c23694401fcbee4451fe6b7e22e325a4bac
14+
RUN sha256sum /lib/libwasmvm_muslc.aarch64.a | grep 1bad0e3f9b72603082b8e48307c7a319df64ca9e26976ffc7a3c317a08fe4b1a
15+
RUN sha256sum /lib/libwasmvm_muslc.x86_64.a | grep c6612d17d82b0997696f1076f6d894e339241482570b9142f29b0d8f21b280bf
1616
RUN cp "/lib/libwasmvm_muslc.$(uname -m).a" /lib/libwasmvm_muslc.a
1717

1818
COPY go.mod go.sum* ./

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ require (
6767
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
6868
github.com/99designs/keyring v1.2.2 // indirect
6969
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
70-
github.com/CosmWasm/wasmvm/v2 v2.1.4 // indirect
70+
github.com/CosmWasm/wasmvm/v2 v2.1.5 // indirect
7171
github.com/DataDog/datadog-go v3.2.0+incompatible // indirect
7272
github.com/DataDog/zstd v1.5.5 // indirect
7373
github.com/Microsoft/go-winio v0.6.2 // indirect

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03
243243
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
244244
github.com/CosmWasm/wasmd v0.53.2 h1:c3MQjeQq+r+Zj2rPeW+c9kJmTevuNnZOIkiiCP/3bg4=
245245
github.com/CosmWasm/wasmd v0.53.2/go.mod h1:gP10E56tuToU5rsZR7vZLBL5ssW2mie6KN/WrQLG7/I=
246-
github.com/CosmWasm/wasmvm/v2 v2.1.4 h1:7EUVQjBxXHkVjL2AqqXD7hMEe0dmoNn2li9E4PWRAnA=
247-
github.com/CosmWasm/wasmvm/v2 v2.1.4/go.mod h1:bMhLQL4Yp9CzJi9A83aR7VO9wockOsSlZbT4ztOl6bg=
246+
github.com/CosmWasm/wasmvm/v2 v2.1.5 h1:cYI1Ook1IAA5DFA0IVvDQQboorNHZPAZ7emBBHFmXSQ=
247+
github.com/CosmWasm/wasmvm/v2 v2.1.5/go.mod h1:bMhLQL4Yp9CzJi9A83aR7VO9wockOsSlZbT4ztOl6bg=
248248
github.com/DATA-DOG/go-sqlmock v1.3.3/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM=
249249
github.com/DataDog/datadog-go v3.2.0+incompatible h1:qSG2N4FghB1He/r2mFrWKCaL7dXCilEuNEeAn20fdD4=
250250
github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=

0 commit comments

Comments
 (0)