From f14ec23053813d2c461653032ae853fe65714efe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 05:44:19 +0000 Subject: [PATCH 1/2] build(deps): bump ruby/setup-ruby in the all-dependencies group Bumps the all-dependencies group with 1 update: [ruby/setup-ruby](https://github.com/ruby/setup-ruby). Updates `ruby/setup-ruby` from 1.254.0 to 1.255.0 - [Release notes](https://github.com/ruby/setup-ruby/releases) - [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb) - [Commits](https://github.com/ruby/setup-ruby/compare/2a7b30092b0caf9c046252510f9273b4875f3db9...829114fc20da43a41d27359103ec7a63020954d4) --- updated-dependencies: - dependency-name: ruby/setup-ruby dependency-version: 1.255.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40c4a44..fd0a4d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup Ruby - uses: ruby/setup-ruby@2a7b30092b0caf9c046252510f9273b4875f3db9 + uses: ruby/setup-ruby@829114fc20da43a41d27359103ec7a63020954d4 with: ruby-version: '3.0' bundler-cache: true @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup Ruby - uses: ruby/setup-ruby@2a7b30092b0caf9c046252510f9273b4875f3db9 + uses: ruby/setup-ruby@829114fc20da43a41d27359103ec7a63020954d4 with: ruby-version: '3.0' bundler-cache: true @@ -38,7 +38,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup Ruby - uses: ruby/setup-ruby@2a7b30092b0caf9c046252510f9273b4875f3db9 + uses: ruby/setup-ruby@829114fc20da43a41d27359103ec7a63020954d4 with: ruby-version: '3.0' bundler-cache: true @@ -51,7 +51,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup Ruby - uses: ruby/setup-ruby@2a7b30092b0caf9c046252510f9273b4875f3db9 + uses: ruby/setup-ruby@829114fc20da43a41d27359103ec7a63020954d4 with: ruby-version: '3.0' bundler-cache: true From 45aad049ef94181aa68591ba52d01e2ca26252fa Mon Sep 17 00:00:00 2001 From: Kate Higa <16447748+khiga8@users.noreply.github.com> Date: Mon, 18 Aug 2025 11:43:40 -0400 Subject: [PATCH 2/2] Fix rubcoop rule --- .../accessibility/no_visually_hidden_interactive_elements.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/erblint-github/linters/github/accessibility/no_visually_hidden_interactive_elements.rb b/lib/erblint-github/linters/github/accessibility/no_visually_hidden_interactive_elements.rb index 3890c7d..2fbd9b2 100644 --- a/lib/erblint-github/linters/github/accessibility/no_visually_hidden_interactive_elements.rb +++ b/lib/erblint-github/linters/github/accessibility/no_visually_hidden_interactive_elements.rb @@ -9,6 +9,7 @@ module Accessibility class NoVisuallyHiddenInteractiveElements < Linter include ERBLint::Linters::CustomHelpers include LinterRegistry + INTERACTIVE_ELEMENTS = %w[a button summary select option textarea].freeze MESSAGE = "Avoid visually hidding interactive elements. Visually hiding interactive elements can be confusing to sighted keyboard users as it appears their focus has been lost when they navigate to the hidden element"