Skip to content

Commit 903126d

Browse files
committed
Update default dfx version
1 parent 9c67937 commit 903126d

5 files changed

+4
-12
lines changed

.github/workflows/provision-darwin.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rm node.pkg
1818

1919
# Install DFINITY SDK.
2020
curl --location --output install-dfx.sh "https://internetcomputer.org/install.sh"
21-
DFX_VERSION=${DFX_VERSION:=0.12.0} bash install-dfx.sh < <(yes Y)
21+
DFX_VERSION=${DFX_VERSION:=0.15.2} bash install-dfx.sh < <(yes Y)
2222
rm install-dfx.sh
2323
dfx cache install
2424

.github/workflows/provision-linux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rm install-node.sh
1313

1414
# Install DFINITY SDK.
1515
wget --output-document install-dfx.sh "https://internetcomputer.org/install.sh"
16-
DFX_VERSION=${DFX_VERSION:=0.12.0} bash install-dfx.sh < <(yes Y)
16+
DFX_VERSION=${DFX_VERSION:=0.15.2} bash install-dfx.sh < <(yes Y)
1717
rm install-dfx.sh
1818
dfx cache install
1919

.github/workflows/rust-canister-info-example.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v1
2121
- name: Provision Darwin
22-
run: DFX_VERSION="0.14.2" bash .github/workflows/provision-darwin.sh
22+
run: bash .github/workflows/provision-darwin.sh
2323
- name: Rust Canister info Darwin
2424
run: |
2525
dfx start --background
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- uses: actions/checkout@v1
3333
- name: Provision Linux
34-
run: DFX_VERSION="0.14.2" bash .github/workflows/provision-linux.sh
34+
run: bash .github/workflows/provision-linux.sh
3535
- name: Rust Canister info Linux
3636
run: |
3737
dfx start --background

.github/workflows/rust-hello-example.yml

-4
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v1
2020
- name: Provision Darwin
21-
env:
22-
DFX_VERSION: 0.13.1
2321
run: bash .github/workflows/provision-darwin.sh
2422
- name: Rust Hello Darwin
2523
run: |
@@ -32,8 +30,6 @@ jobs:
3230
steps:
3331
- uses: actions/checkout@v1
3432
- name: Provision Linux
35-
env:
36-
DFX_VERSION: 0.13.1
3733
run: bash .github/workflows/provision-linux.sh
3834
- name: Rust Hello Linux
3935
run: |

.github/workflows/rust-periodic_tasks-example.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v1
2020
- name: Provision Darwin
21-
env:
22-
DFX_VERSION: 0.13.1
2321
run: bash .github/workflows/provision-darwin.sh
2422
- name: Rust Periodic Tasks Darwin
2523
run: |
@@ -32,8 +30,6 @@ jobs:
3230
steps:
3331
- uses: actions/checkout@v1
3432
- name: Provision Linux
35-
env:
36-
DFX_VERSION: 0.13.1
3733
run: bash .github/workflows/provision-linux.sh
3834
- name: Rust Periodic Tasks Linux
3935
run: |

0 commit comments

Comments
 (0)