Skip to content

Commit

Permalink
Merge pull request #1813 from demergent-labs/update_dfx_0_20_1
Browse files Browse the repository at this point in the history
update dfx to 0.20.1
  • Loading branch information
lastmjs authored Jun 10, 2024
2 parents 14e7559 + f20a041 commit 2bd48a9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- if: contains(github.head_ref, 'release--')
name: Install dfx
run: |
DFXVM_INIT_YES=true DFX_VERSION=0.20.0-extensioncanistertype.0 sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
DFXVM_INIT_YES=true DFX_VERSION=0.20.1 sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
echo "$HOME/.local/share/dfx/bin" >> $GITHUB_PATH
# TODO we should use some Action-specific bot account
- if: contains(github.head_ref, 'release--')
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
- if: ${{ needs.release-candidate-deploy.outputs.should_run_tests }}
name: Install dfx
run: |
DFXVM_INIT_YES=true DFX_VERSION=0.20.0-extensioncanistertype.0 sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
DFXVM_INIT_YES=true DFX_VERSION=0.20.1 sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
echo "$HOME/.local/share/dfx/bin" >> $GITHUB_PATH
- if: ${{ needs.release-candidate-deploy.outputs.should_run_tests }}
uses: actions/cache@v3
Expand Down
4 changes: 2 additions & 2 deletions examples/composite_queries/test/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ export function get_tests(canister1: ActorSubclass<_SERVICE>): Test[] {
Ok: error
.toString()
.includes(
`Rejection code 5, Canister ${getCanisterId(
`Rejection code 5, Error from Canister ${getCanisterId(
'canister2'
)} has no query method`
)}: Canister has no query method`
)
};
}
Expand Down
4 changes: 2 additions & 2 deletions examples/ic_api/test/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,9 +302,9 @@ export function getTests(icApiCanister: ActorSubclass<_SERVICE>): Test[] {
return {
Ok:
(error as any).props.Message ===
`IC0503: Canister ${getCanisterId(
`IC0503: Error from Canister ${getCanisterId(
'ic_api'
)} trapped explicitly: here is the message`
)}: Canister trapped explicitly: here is the message`
};
}
}
Expand Down

0 comments on commit 2bd48a9

Please sign in to comment.