From 62279fb401e023cde5a98f4ec010b905e20a4a19 Mon Sep 17 00:00:00 2001 From: Adam McCrea Date: Thu, 10 Oct 2024 14:43:46 -0400 Subject: [PATCH] chore: Enforce version constraint for standard linting v1.41.0 has enabled the RedundantInterpolationUnfreeze rule, which is not supported in Ruby 2.x. Until our gem drops support for Ruby 2.x, we need our linter to respect it. --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index eb18f4e9..c1fda299 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,12 +10,12 @@ jobs: fail-fast: false matrix: ruby: - - '3.3' + - "3.3" runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - - run: gem install standard + - run: gem install standard -v '~> 1.40.0' - run: standardrb