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
8 changes: 4 additions & 4 deletions .github/workflows/release_ruby_gem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- uses: oxidize-rb/actions/setup-ruby-and-rust@main
with:
rubygems: latest
ruby-version: "3.1"
ruby-version: "4.0"
bundler-cache: false
cargo-cache: false
cargo-vendor: false
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:

- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1"
ruby-version: "4.0"
bundler-cache: true
working-directory: rspec-trunk-flaky-tests

Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
with:
platform: ${{ matrix.platform }}
working-directory: rspec-trunk-flaky-tests
ruby-versions: 3.0,3.1,3.2,3.3,3.4
ruby-versions: 3.0,3.1,3.2,3.3,3.4,4.0

- uses: actions/upload-artifact@v4
with:
Expand All @@ -107,7 +107,7 @@ jobs:
needs: [ci-data, cross-gem]
strategy:
matrix:
ruby-version: ["3.0", "3.1", "3.2", "3.3", "3.4"]
ruby-version: ["3.0", "3.1", "3.2", "3.3", "3.4", "4.0"]
platform:
- name: x86_64-linux
os: ubuntu-latest
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/smoke_test_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
ruby-version: "4.0"
bundler-cache: true
working-directory: rspec-trunk-flaky-tests

Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
with:
platform: x86_64-linux
working-directory: rspec-trunk-flaky-tests
ruby-versions: "3.4"
ruby-versions: "4.0"

- name: Upload gem artifact
uses: actions/upload-artifact@v4
Expand All @@ -222,7 +222,7 @@ jobs:
- name: Run Ruby gem smoke tests
uses: ./.github/actions/test_ruby_gem_uploads
with:
ruby-version: "3.4"
ruby-version: "4.0"
trunk-token: ${{ secrets.TRUNK_STAGING_ORG_API_TOKEN }}
trunk-public-api-address: https://api.trunk-staging.io
trunk-org-slug: trunk-staging-org
Expand All @@ -246,7 +246,7 @@ jobs:
- name: Run Ruby gem smoke tests
uses: ./.github/actions/test_ruby_gem_uploads
with:
ruby-version: "3.4"
ruby-version: "4.0"
trunk-token: ${{ secrets.TRUNK_PROD_ORG_API_TOKEN }}
trunk-public-api-address: https://api.trunk.io
trunk-org-slug: trunk
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion context/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ thiserror = "1.0.63"
tsify-next = { version = "0.5.4", optional = true }
uuid = { version = "1.10.0", features = ["v5"] }
wasm-bindgen = { version = "0.2.95", optional = true }
magnus = { version = "0.7.1", optional = true, default-features = false }
magnus = { version = "0.8.2", optional = true, default-features = false }
proto = { path = "../proto" }
prost-wkt-types = { version = "0.5.1", features = ["vendored-protox"] }
tracing = "0.1.41"
Expand Down
Loading