From 46aba380efdd39b3d77e768c16dfccb18731b64f Mon Sep 17 00:00:00 2001 From: JV-conseil Date: Fri, 25 Aug 2023 16:57:43 +0200 Subject: [PATCH] ruby/setup-ruby@v1 --- .github/workflows/build.yml | 5 +++-- .github/workflows/deploy.yml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0a542af..1bdfe91 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,9 +15,10 @@ jobs: - jekyll:pages steps: - uses: actions/checkout@v3 - - uses: actions/setup-ruby@v1 + - uses: ruby/setup-ruby@v1 with: - ruby-version: '2.x' + ruby-version: ${{ matrix.ruby }} + bundler-cache: true # runs 'bundle install' and caches installed gems automatically - run: bundle install - run: | echo $'{\n "experimental": true\n}' | \ diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bb9831b..737a6cf 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -37,9 +37,10 @@ jobs: - jekyll:pages steps: - uses: actions/checkout@v3 - - uses: actions/setup-ruby@v1 + - uses: ruby/setup-ruby@v1 with: - ruby-version: '2.x' + ruby-version: ${{ matrix.ruby }} + bundler-cache: true # runs 'bundle install' and caches installed gems automatically - run: bundle install - run: | echo $'{\n "experimental": true\n}' | \