From 1a0a3ce9e50231436b6d3083956738fe2e3f1e66 Mon Sep 17 00:00:00 2001 From: bal7hazar Date: Fri, 9 May 2025 15:52:31 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Upgrade=20dojo=20versi?= =?UTF-8?q?on?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/actions/setup/action.yml | 14 +++++--------- .github/workflows/ci.yml | 4 ++-- .tool-versions | 2 +- Scarb.toml | 6 +++--- 4 files changed, 11 insertions(+), 15 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 23702ad0..be62d752 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -1,15 +1,11 @@ -name: 'Setup' -description: 'Setup tooling' +name: "Setup" +description: "Setup tooling" runs: using: "composite" steps: - - name: Install dojoup - run: curl -L https://install.dojoengine.org | bash - shell: bash - - name: Install dojo run: | - /home/runner/.config/.dojo/bin/dojoup --version ${{ env.DOJO_VERSION }} - sudo mv /home/runner/.config/.dojo/bin/katana /usr/local/bin/ - sudo mv /home/runner/.config/.dojo/bin/sozo /usr/local/bin/ + curl -L -o dojo-linux-x86_64.tar.gz https://github.com/dojoengine/dojo/releases/download/${{ env.DOJO_VERSION }}/dojo_${{ env.DOJO_VERSION }}_linux_amd64.tar.gz + tar -xzf dojo-linux-x86_64.tar.gz + sudo mv sozo /usr/local/bin/ shell: bash diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb53e4b1..bb84a002 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,8 +7,8 @@ on: pull_request: env: - DOJO_VERSION: v1.1.2 - SCARB_VERSION: 2.9.2 + DOJO_VERSION: v1.5.1 + SCARB_VERSION: 2.10.1 jobs: check: diff --git a/.tool-versions b/.tool-versions index f6645f9f..289789bb 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1 @@ -scarb 2.9.2 +scarb 2.10.1 diff --git a/Scarb.toml b/Scarb.toml index 6161a97c..93fccb7a 100644 --- a/Scarb.toml +++ b/Scarb.toml @@ -13,8 +13,8 @@ version = "1.1.2" edition = "2024_07" [workspace.dependencies] -dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.1.2" } +dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.5.1" } # dojo = { path = "../dojo/crates/dojo-core" } cubit = { git = "https://github.com/bengineer42/cubit", branch = "bump-cairo-gt-2.8" } -starknet = "^2.9.2" -cairo_test = "^2.9.2" +starknet = "^2.10.1" +cairo_test = "^2.10.1" From 1aba33f09e326d2f2645ff93fac1e9febc64ac1d Mon Sep 17 00:00:00 2001 From: bal7hazar Date: Fri, 9 May 2025 15:59:58 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Upgrade=20dojo=20versi?= =?UTF-8?q?on?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- Scarb.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb84a002..c4d4bedb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: pull_request: env: - DOJO_VERSION: v1.5.1 + DOJO_VERSION: v1.5.0 SCARB_VERSION: 2.10.1 jobs: diff --git a/Scarb.toml b/Scarb.toml index 93fccb7a..badfe66c 100644 --- a/Scarb.toml +++ b/Scarb.toml @@ -13,7 +13,7 @@ version = "1.1.2" edition = "2024_07" [workspace.dependencies] -dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.5.1" } +dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.5.0" } # dojo = { path = "../dojo/crates/dojo-core" } cubit = { git = "https://github.com/bengineer42/cubit", branch = "bump-cairo-gt-2.8" } starknet = "^2.10.1"