From c2923b6deebc2253753b907d8313279873e3e302 Mon Sep 17 00:00:00 2001 From: Varun Gandhi Date: Tue, 22 Nov 2022 13:50:26 +0800 Subject: [PATCH] ci: Use ruby/setup-ruby instead of actions/setup-ruby The latter is deprecated/archived now. --- .github/workflows/build_gems.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_gems.yml b/.github/workflows/build_gems.yml index e33185e25..8a5317cc8 100644 --- a/.github/workflows/build_gems.yml +++ b/.github/workflows/build_gems.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v3 # Keep in sync with ci.yml - - uses: actions/setup-ruby@v1 + - uses: ruby/setup-ruby@v1 - name: Manually evict cache entry if applicable if: ${{ runner.os == 'Linux' }} run: ACCESS_TOKEN='${{ secrets.GITHUB_TOKEN }}' python3 .github/workflows/evict.py diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d037460ef..809afc892 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: actions/checkout@v3 # Keep in sync with ci.yml - - uses: actions/setup-ruby@v1 + - uses: ruby/setup-ruby@v1 - name: Manually evict cache entry if applicable if: ${{ runner.os == 'Linux' }} run: ACCESS_TOKEN='${{ secrets.GITHUB_TOKEN }}' python3 .github/workflows/evict.py