From 09e07617d514c5c5849c0dd09e2c286b51c3a135 Mon Sep 17 00:00:00 2001 From: Andrey Date: Thu, 2 Jan 2025 11:49:24 +0100 Subject: [PATCH] use released Ruby 3.4.1 for memory leaks check --- .github/workflows/test-memory-leaks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-memory-leaks.yml b/.github/workflows/test-memory-leaks.yml index eea8e858..a9368645 100644 --- a/.github/workflows/test-memory-leaks.yml +++ b/.github/workflows/test-memory-leaks.yml @@ -7,9 +7,9 @@ jobs: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: - ruby-version: 3.4.0-preview1 # TODO: Use stable version once 3.4 is out + ruby-version: 3.4.1 bundler-cache: true # runs 'bundle install' and caches installed gems automatically bundler: latest - cache-version: v1 # bump this to invalidate cache + cache-version: v2 # bump this to invalidate cache - run: sudo apt-get update && (sudo apt-get install -y valgrind || sleep 5 && sudo apt-get install -y valgrind) && valgrind --version - run: bundle exec rake compile spec:ddcov_memcheck