diff --git a/.github/workflows/motoko-canister-logs-example.yml b/.github/workflows/motoko-canister-logs-example.yml index 9f6ddb2fd..880b99940 100644 --- a/.github/workflows/motoko-canister-logs-example.yml +++ b/.github/workflows/motoko-canister-logs-example.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Darwin - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-darwin.sh + run: bash .github/workflows/provision-darwin.sh - name: Motoko Canister Logs Darwin run: | dfx start --background --clean --pocketic @@ -31,7 +31,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Linux - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-linux.sh + run: bash .github/workflows/provision-linux.sh - name: Motoko Canister Logs Linux run: | dfx start --background --clean --pocketic diff --git a/.github/workflows/provision-darwin.sh b/.github/workflows/provision-darwin.sh index 8db740abf..ffd8aa363 100755 --- a/.github/workflows/provision-darwin.sh +++ b/.github/workflows/provision-darwin.sh @@ -18,7 +18,7 @@ rm node.pkg # Install DFINITY SDK. curl --location --output install-dfx.sh "https://raw.githubusercontent.com/dfinity/sdk/master/public/install-dfxvm.sh" -DFX_VERSION=${DFX_VERSION:=0.23.0} DFXVM_INIT_YES=true bash install-dfx.sh +DFX_VERSION=${DFX_VERSION:=0.24.0} DFXVM_INIT_YES=true bash install-dfx.sh rm install-dfx.sh echo "$HOME/Library/Application Support/org.dfinity.dfx/bin" >> $GITHUB_PATH source "$HOME/Library/Application Support/org.dfinity.dfx/env" diff --git a/.github/workflows/provision-linux.sh b/.github/workflows/provision-linux.sh index 2b0b4851d..8e01df12c 100755 --- a/.github/workflows/provision-linux.sh +++ b/.github/workflows/provision-linux.sh @@ -13,7 +13,7 @@ rm install-node.sh # Install DFINITY SDK. wget --output-document install-dfx.sh "https://raw.githubusercontent.com/dfinity/sdk/master/public/install-dfxvm.sh" -DFX_VERSION=${DFX_VERSION:=0.23.0} DFXVM_INIT_YES=true bash install-dfx.sh +DFX_VERSION=${DFX_VERSION:=0.24.0} DFXVM_INIT_YES=true bash install-dfx.sh rm install-dfx.sh echo "$HOME/.local/share/dfx/bin" >> $GITHUB_PATH source "$HOME/.local/share/dfx/env" diff --git a/.github/workflows/rust-canister-info-example.yml b/.github/workflows/rust-canister-info-example.yml index d6ecc88c7..d72acfd72 100644 --- a/.github/workflows/rust-canister-info-example.yml +++ b/.github/workflows/rust-canister-info-example.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Darwin - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-darwin.sh + run: bash .github/workflows/provision-darwin.sh - name: Rust Canister info Darwin run: | dfx start --background --clean --pocketic @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Linux - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-linux.sh + run: bash .github/workflows/provision-linux.sh - name: Rust Canister info Linux run: | dfx start --background --clean --pocketic diff --git a/.github/workflows/rust-canister-logs-example.yml b/.github/workflows/rust-canister-logs-example.yml index 63a4e6e4e..a6aa4459d 100644 --- a/.github/workflows/rust-canister-logs-example.yml +++ b/.github/workflows/rust-canister-logs-example.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Darwin - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-darwin.sh + run: bash .github/workflows/provision-darwin.sh - name: Rust Canister Logs Darwin run: | dfx start --background --clean --pocketic @@ -31,7 +31,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Linux - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-linux.sh + run: bash .github/workflows/provision-linux.sh - name: Rust Canister Logs Linux run: | dfx start --background --clean --pocketic diff --git a/.github/workflows/rust-canister-snapshots-example.yaml b/.github/workflows/rust-canister-snapshots-example.yaml index 385d449bd..7bed72fea 100644 --- a/.github/workflows/rust-canister-snapshots-example.yaml +++ b/.github/workflows/rust-canister-snapshots-example.yaml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Darwin - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-darwin.sh + run: bash .github/workflows/provision-darwin.sh - name: Remove networks.json run: rm -f ~/.config/dfx/networks.json - name: Rust Canister Snapshots Darwin @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Linux - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-linux.sh + run: bash .github/workflows/provision-linux.sh - name: Remove networks.json run: rm -f ~/.config/dfx/networks.json - name: Rust Canister Snapshots Linux diff --git a/.github/workflows/rust-face-recognition-example.yaml b/.github/workflows/rust-face-recognition-example.yaml index bfc0961b6..dab9d7d6f 100644 --- a/.github/workflows/rust-face-recognition-example.yaml +++ b/.github/workflows/rust-face-recognition-example.yaml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Darwin - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-darwin.sh + run: bash .github/workflows/provision-darwin.sh - name: Remove networks.json run: rm -f ~/.config/dfx/networks.json - name: Rust Face Recognition Darwin @@ -35,7 +35,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Linux - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-linux.sh + run: bash .github/workflows/provision-linux.sh - name: Remove networks.json run: rm -f ~/.config/dfx/networks.json - name: Rust Face Recognition Linux diff --git a/.github/workflows/rust-image-classification-example.yaml b/.github/workflows/rust-image-classification-example.yaml index d9915be2b..c01ed7317 100644 --- a/.github/workflows/rust-image-classification-example.yaml +++ b/.github/workflows/rust-image-classification-example.yaml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Darwin - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-darwin.sh + run: bash .github/workflows/provision-darwin.sh - name: Remove networks.json run: rm -f ~/.config/dfx/networks.json - name: Rust Image Classification Darwin @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Linux - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-linux.sh + run: bash .github/workflows/provision-linux.sh - name: Remove networks.json run: rm -f ~/.config/dfx/networks.json - name: Rust Image Classification Linux diff --git a/.github/workflows/rust-simd-example.yaml b/.github/workflows/rust-simd-example.yaml index 2e93dda3a..dbfa80923 100644 --- a/.github/workflows/rust-simd-example.yaml +++ b/.github/workflows/rust-simd-example.yaml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Darwin - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-darwin.sh + run: bash .github/workflows/provision-darwin.sh - name: Remove networks.json run: rm -f ~/.config/dfx/networks.json - name: Rust SIMD Darwin @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Provision Linux - run: DFX_VERSION="0.23.0" bash .github/workflows/provision-linux.sh + run: bash .github/workflows/provision-linux.sh - name: Remove networks.json run: rm -f ~/.config/dfx/networks.json - name: Rust SIMD Linux