From 4cd3f24032e422bd2a4ea21562364dda79376eff Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Fri, 15 Nov 2024 08:33:31 +0100 Subject: [PATCH] Fix ruby version used to run license finder --- .github/workflows/license_finder.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/license_finder.yml b/.github/workflows/license_finder.yml index 7536a95..01c120e 100644 --- a/.github/workflows/license_finder.yml +++ b/.github/workflows/license_finder.yml @@ -8,15 +8,15 @@ concurrency: group: ${{ github.ref }} cancel-in-progress: true jobs: - build-static-assets: + check-licenses: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: token: ${{ secrets.GITHUB_TOKEN }} - - uses: ruby/setup-ruby@v1 + - uses: ruby/setup-ruby@v1.202.0 with: - ruby-version: '3.3' + ruby-version: '3.3.6' - name: Install project dependencies run: bundle install --jobs `getconf _NPROCESSORS_ONLN` - name: Run license finder