Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
pull_request:

env:
DOJO_VERSION: v1.1.2
SCARB_VERSION: 2.9.2
DOJO_VERSION: v1.5.0
SCARB_VERSION: 2.10.1

jobs:
check:
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
scarb 2.9.2
scarb 2.10.1
6 changes: 3 additions & 3 deletions Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0" }
# 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"
Loading