Skip to content

Commit 25dce42

Browse files
authored
Merge pull request #404 from smartcontractkit/audit-fixes
Follow-up fixes
2 parents afe9aa3 + cea1b45 commit 25dce42

File tree

11 files changed

+146
-198
lines changed

11 files changed

+146
-198
lines changed

.github/workflows/contract-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Release Artifacts
1414
runs-on: ubuntu-latest
1515
container:
16-
image: projectserum/build:v0.24.2
16+
image: projectserum/build:v0.25.0
1717
env:
1818
RUSTUP_HOME: "/root/.rustup"
1919
steps:

.github/workflows/e2e_custom_cl.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
contents: read
2424
runs-on: ubuntu-latest
2525
container:
26-
image: projectserum/build:v0.24.2
26+
image: projectserum/build:v0.25.0
2727
env:
2828
RUSTUP_HOME: "/root/.rustup"
2929
FORCE_COLOR: 1

.github/workflows/rust.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Rust Run Anchor Tests
1212
runs-on: ubuntu-latest
1313
container:
14-
image: projectserum/build:v0.24.2
14+
image: projectserum/build:v0.25.0
1515
env:
1616
RUSTUP_HOME: "/root/.rustup"
1717
FORCE_COLOR: 1
@@ -36,7 +36,7 @@ jobs:
3636
path: contracts/target
3737
key: ${{ runner.os }}-v2-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
3838

39-
- run: solana-keygen new -o id.json
39+
- run: solana-keygen new -o id.json --no-bip39-passphrase
4040
- name: Compile typescript client
4141
run: |
4242
cd ../ts
@@ -53,7 +53,7 @@ jobs:
5353
name: Rust Lint
5454
runs-on: ubuntu-latest
5555
container:
56-
image: projectserum/build:v0.24.2
56+
image: projectserum/build:v0.25.0
5757
env:
5858
RUSTUP_HOME: "/root/.rustup"
5959
FORCE_COLOR: 1

.github/workflows/soak.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
contents: read
1919
runs-on: ubuntu-latest
2020
container:
21-
image: projectserum/build:v0.24.2
21+
image: projectserum/build:v0.25.0
2222
env:
2323
RUSTUP_HOME: "/root/.rustup"
2424
FORCE_COLOR: 1

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
BIN_DIR = bin
22
export GOPATH ?= $(shell go env GOPATH)
33
export GO111MODULE ?= on
4-
export PROJECT_SERUM_IMAGE ?= projectserum/build:v0.24.2
4+
export PROJECT_SERUM_IMAGE ?= projectserum/build:v0.25.0
55

66
LINUX=LINUX
77
OSX=OSX

0 commit comments

Comments
 (0)