From 2ccebbfb8b635f68d3bcf2b0a13f4250aa230d4d Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Tue, 28 Jan 2025 03:01:54 +0100 Subject: [PATCH] fix --- .github/workflows/release-automated.yml | 9 ++++++--- .github/workflows/release-manual-docs.yml | 3 ++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-automated.yml b/.github/workflows/release-automated.yml index 884501e3a..120671f1d 100644 --- a/.github/workflows/release-automated.yml +++ b/.github/workflows/release-automated.yml @@ -7,7 +7,7 @@ env: jobs: release: - runs-on: macos-14 + runs-on: macos-15 outputs: current_tag: ${{ steps.tag.outputs.current_tag }} steps: @@ -19,7 +19,10 @@ jobs: node-version: 22 cache: npm - name: Setup Ruby - uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108 + uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.1.0' + bundler-cache: true - name: Cache Gems id: cache-gems uses: actions/cache@v2 @@ -46,7 +49,7 @@ jobs: publish-docs: needs: release if: needs.release.outputs.current_tag != '' - runs-on: macos-14 + runs-on: macos-15 steps: - name: Checkout repository uses: actions/checkout@v4 diff --git a/.github/workflows/release-manual-docs.yml b/.github/workflows/release-manual-docs.yml index 150763731..74847c626 100644 --- a/.github/workflows/release-manual-docs.yml +++ b/.github/workflows/release-manual-docs.yml @@ -11,7 +11,7 @@ env: jobs: publish-docs: if: github.event.inputs.tag != '' - runs-on: macos-14 + runs-on: macos-15 steps: - name: Checkout repository uses: actions/checkout@v4 @@ -20,6 +20,7 @@ jobs: - name: Setup Ruby uses: ruby/setup-ruby@v1 with: + ruby-version: '3.1.0' bundler-cache: true - name: Submodules run: git submodule update --init --recursive