Skip to content

Commit caadee1

Browse files
authored
⬆️ Upgrade dojo version (#121)
1 parent 4d6a98e commit caadee1

File tree

4 files changed

+11
-15
lines changed

4 files changed

+11
-15
lines changed

.github/actions/setup/action.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
name: 'Setup'
2-
description: 'Setup tooling'
1+
name: "Setup"
2+
description: "Setup tooling"
33
runs:
44
using: "composite"
55
steps:
6-
- name: Install dojoup
7-
run: curl -L https://install.dojoengine.org | bash
8-
shell: bash
9-
106
- name: Install dojo
117
run: |
12-
/home/runner/.config/.dojo/bin/dojoup --version ${{ env.DOJO_VERSION }}
13-
sudo mv /home/runner/.config/.dojo/bin/katana /usr/local/bin/
14-
sudo mv /home/runner/.config/.dojo/bin/sozo /usr/local/bin/
8+
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
9+
tar -xzf dojo-linux-x86_64.tar.gz
10+
sudo mv sozo /usr/local/bin/
1511
shell: bash

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
pull_request:
88

99
env:
10-
DOJO_VERSION: v1.1.2
11-
SCARB_VERSION: 2.9.2
10+
DOJO_VERSION: v1.5.0
11+
SCARB_VERSION: 2.10.1
1212

1313
jobs:
1414
check:

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
scarb 2.9.2
1+
scarb 2.10.1

Scarb.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ version = "1.1.2"
1313
edition = "2024_07"
1414

1515
[workspace.dependencies]
16-
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.1.2" }
16+
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.5.0" }
1717
# dojo = { path = "../dojo/crates/dojo-core" }
1818
cubit = { git = "https://github.com/bengineer42/cubit", branch = "bump-cairo-gt-2.8" }
19-
starknet = "^2.9.2"
20-
cairo_test = "^2.9.2"
19+
starknet = "^2.10.1"
20+
cairo_test = "^2.10.1"

0 commit comments

Comments
 (0)